zoukankan      html  css  js  c++  java
  • 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);
        }
    }
    
  • 相关阅读:
    小程序(二)
    React 之 项目搭建
    mac 终端 常用命令
    css 之 动画(翻转动画例子)
    css 之 单位
    Git 常见操作
    css 之 页面常用布局
    mac版vscode快捷键
    JSX
    Rem适配原理
  • 原文地址:https://www.cnblogs.com/AAAmsl/p/12785820.html
Copyright © 2011-2022 走看看