Binary Tree Vertical Order Traversal
https://www.lintcode.com/problem/binary-tree-vertical-order-traversal/description
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],
/ \
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
Analysis
时间复杂度O(N), N为结点数.
Last updated
Was this helpful?