/**
* 107. Binary Tree Level Order Traversal II
* 1. Time:O(n) Space:O(n)
* 2. Time:O(n) Space:O(n)
*/
// 1. Time:O(n) Space:O(n)
class Solution {
public List<List<Integer>> levelOrderBottom(TreeNode root) {
List<List<Integer>> res = new ArrayList<>();
helper(root,1,res);
return res;
}
public void helper(TreeNode root, int level, List<List<Integer>> res){
if(root==null) return;
if(level>res.size())
res.add(0,new ArrayList<>());
helper(root.left,level+1,res);
helper(root.right,level+1,res);
res.get(res.size()-level).add(root.val);
}
}
// 2. Time:O(n) Space:O(n)
class Solution {
public List<List<Integer>> levelOrderBottom(TreeNode root) {
List<List<Integer>> res = new ArrayList<>();
if(root==null) return res;
Queue<TreeNode> queue = new LinkedList<>();
queue.add(root);
while(!queue.isEmpty()){
int cnt = queue.size();
List<Integer> level = new ArrayList<>();
for(int i=0;i<cnt;i++){
TreeNode tmp = queue.poll();
level.add(tmp.val);
if(tmp.left!=null) queue.add(tmp.left);
if(tmp.right!=null) queue.add(tmp.right);
}
res.add(0,level);
}
return res;
}
}