Given a binary tree, return thevertical ordertraversal of its nodes' values. (ie, from top to bottom, column by column).
Input:
[3,9,20,null,null,15,7]
3
/\
/ \
9 20
/\
/ \
15 7
Output:
[
[9],
[3,15],
[20],
[7]
]
Input:
[3,9,8,4,0,1,7]
3
/\
/ \
9 8
/\ /\
/ \/ \
4 01 7
Output:
[
[4],
[9],
[3,0,1],
[8],
[7]
]
Input:
[3,9,8,4,0,1,7,null,null,null,2,5]
(0's right child is 2 and 1's left child is 5)
3
/\
/ \
9 8
/\ /\
/ \/ \
4 01 7
/\
/ \
5 2
Output:
[
[4],
[9,5],
[3,0,1],
[8,2],
[7]
]
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public List<List<Integer>> verticalOrder(TreeNode root) {
List<List<Integer>> res = new ArrayList<>();
if (root == null) {
return res;
}
TreeMap<Integer, List<Integer>> map = new TreeMap<>();
Queue<Integer> col = new LinkedList<>();
Queue<TreeNode> q = new LinkedList<>();
col.offer(0);
q.offer(root);
while (!q.isEmpty()) {
TreeNode curr = q.poll();
int column = col.poll();
map.putIfAbsent(column, new ArrayList<>());
map.get(column).add(curr.val);
if (curr.left != null) {
q.offer(curr.left);
col.offer(column - 1);
}
if (curr.right != null) {
q.offer(curr.right);
col.offer(column + 1);
}
}
for (int elem : map.keySet()) {
res.add(map.get(elem));
}
return res;
}
}