LeetCode 102: Binary Tree Level Order Traversal

/**
 * 102. Binary Tree Level Order Traversal
 * 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>> levelOrder(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(level);
        }
        return res;
    }
}

// 2. Time:O(n)  Space:O(n)
class Solution {
    public List<List<Integer>> levelOrder(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(new ArrayList<>());
        res.get(level-1).add(root.val);
        helper(root.left,level+1,res);
        helper(root.right,level+1,res);
    }
}
posted @ 2020-04-27 12:07  AAAmsl  阅读(65)  评论(0编辑  收藏  举报