leetcode-中等-队列-二叉树的层次遍历

Posted 笨宝宝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-中等-队列-二叉树的层次遍历相关的知识,希望对你有一定的参考价值。

给定一个二叉树,返回其按层次遍历的节点值。 (即逐层地,从左到右访问所有节点)。

例如:
给定二叉树: [3,9,20,null,null,15,7],

public List<List<Integer>> levelOrder(TreeNode root) {
        Queue<TreeNode> queue = new LinkedList<>();
        List<List<Integer>> res =new LinkedList<>();
        if(root != null) {
            queue.offer(root);
        }
        while(!queue.isEmpty()){
            int len = queue.size();
            LinkedList<Integer> temp = new LinkedList<>();
            for(int i = 0; i < len; i++){
                TreeNode curr = queue.remove();
                temp.add(curr.val);
                if(curr.left != null){
                    queue.offer(curr.left);
                }
                if(curr.right != null){
                    queue.offer(curr.right);
                }
            }
            res.add(temp);
        }
        return res;
    }

  

以上是关于leetcode-中等-队列-二叉树的层次遍历的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode(102)-二叉树的层次遍历

LeetCode 107 ——二叉树的层次遍历 II

[Leetcode] 102. 二叉树的层次遍历

Leetcode 102. 二叉树的层次遍历

LeetCode 103. 二叉树的锯齿形层次遍历(Binary Tree Zigzag Level Order Traversal)

每日一扣103. 二叉树的锯齿形层次遍历