> For the complete documentation index, see [llms.txt](https://hao-fu-1.gitbook.io/oj/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hao-fu-1.gitbook.io/oj/search/level-order-traversal/index/binary-tree-vertical-order-traversal.md).

# Binary Tree Vertical Order Traversal

> Given a binary tree, return the vertical order traversal of its nodes' values. (ie, from top to bottom, column by column).
>
> If two nodes are in the same row and column, the order should be from left to right.
>
> Examples:
>
> Given binary tree \[3,9,20,null,null,15,7],
>
> 3
>
> /\\
>
> / \\
>
> 9 20
>
> ```
> /\
> ```
>
> / \\
>
> 15 7
>
> return its vertical order traversal as:
>
> \[
>
> \[9],
>
> \[3,15],
>
> \[20],
>
> \[7]
>
> ]
>
> Given binary tree \[3,9,8,4,0,1,7],
>
> ```
>  3
>
> /\
> ```
>
> / \\
>
> 9 8
>
> / /\\
>
> / \\/ \\
>
> 4 01 7
>
> return its vertical order traversal as:
>
> \[
>
> \[4],
>
> \[9],
>
> \[3,0,1],
>
> \[8],
>
> \[7]
>
> ]

## Thoughts

纵向遍历二叉树，结点最多的那层最左结点为起始层。把root所在纵向坐标看作0，其它结点存与它的相对坐标，即左叶子为parent - 1, 右+1，然后按层遍历。

## Code

```cpp
/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */

class Solution {
public:
    /**
     * @param root: the root of tree
     * @return: the vertical order traversal
     */
    vector<vector<int>> verticalOrder(TreeNode * root) {
        if (root == nullptr) return vector<vector<int>>();
        queue<pair<TreeNode*, int>> q;
        q.push({root, 0});
        unordered_map<int, vector<int>> m;
        int mi = 0, mx = 0;
        while (!q.empty()) {
            const auto t = q.front();
            q.pop();
            m[t.second].push_back(t.first->val);
            mi = min(mi, t.second);
            mx = max(mx, t.second);
            if (t.first->left != nullptr) q.push({t.first->left, t.second - 1});
            if (t.first->right != nullptr) q.push({t.first->right, t.second + 1});
        }
        vector<vector<int>> res;
        for (int i = mi; i <= mx; ++i) {
            res.push_back(m[i]);
        }
        return res;
    }
};
```

## Analysis

时间复杂度O(N), N为结点数.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hao-fu-1.gitbook.io/oj/search/level-order-traversal/index/binary-tree-vertical-order-traversal.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
