429N叉树的层序遍历

Posted Anrys

tags:

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

java刷题--429N叉树的层序遍历

题目

在这里插入图片描述

代码

class Solution {
    public List<List<Integer>> levelOrder(Node root) {
        List<List<Integer>> res = new ArrayList<>();
        Deque<Node> queue = new ArrayDeque<>();   
        if(root == null) return res;
        queue.add(root);
        while(!queue.isEmpty()){
            int size = queue.size();
            List<Integer> path = new ArrayList<>();
            for(int i = 0; i < size; i++){
                Node cur = queue.removeFirst();
                path.add(cur.val);
                for(Node child : cur.children){
                    queue.addLast(child);
                }
            }
            res.add(path);
        }return res;
    }
}

结果

在这里插入图片描述

以上是关于429N叉树的层序遍历的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode二叉树的层序遍历

LeetCode二叉树的层序遍历

NC 15 二叉树的层序遍历

429. N 叉树的层序遍历

java刷题--102二叉树的层序遍历

求二叉树的层序遍历