The number of nodes in the tree is in the range [0, 100].
-100 <= Node.val <= 100
ac
/**
* 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<List<Integer>>();
// edge case
if (root == null) return res;
TreeMap<Integer, List<Integer>> tm = new TreeMap<>();
// BFS
Queue<TreeNode> q = new LinkedList<>();
tm.put(0, new ArrayList<Integer>());
tm.get(0).add(root.val);
root.val = 0;
q.offer(root);
while (!q.isEmpty()) {
TreeNode curr = q.poll();
// left
if (curr.left != null) {
if (!tm.containsKey(curr.val-1)) tm.put(curr.val-1, new ArrayList<Integer>());
tm.get(curr.val-1).add(curr.left.val);
curr.left.val = curr.val-1;
q.offer(curr.left);
}
// right
if (curr.right != null) {
if (!tm.containsKey(curr.val+1)) tm.put(curr.val+1, new ArrayList<Integer>());
tm.get(curr.val+1).add(curr.right.val);
curr.right.val = curr.val+1;
q.offer(curr.right);
}
}
for (int i : tm.keySet()) {
res.add(tm.get(i));
}
return res;
}
}