0987. Vertical Order Traversal of a Binary Tree
Last updated
Was this helpful?
Last updated
Was this helpful?
https://leetcode.com/problems/vertical-order-traversal-of-a-binary-tree
Given the root
of a binary tree, calculate the vertical order traversal of the binary tree.
For each node at position (row, col)
, its left and right children will be at positions (row + 1, col - 1)
and (row + 1, col + 1)
respectively. The root of the tree is at (0, 0)
.
The vertical order traversal of a binary tree is a list of top-to-bottom orderings for each column index starting from the leftmost column and ending on the rightmost column. There may be multiple nodes in the same row and same column. In such a case, sort these nodes by their values.
Return the vertical order traversal of the binary tree.
Example 1:
Example 2:
Example 3:
Constraints:
The number of nodes in the tree is in the range [1, 1000]
.
0 <= Node.val <= 1000