429N叉树的层序遍历
Posted Anrys
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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叉树的层序遍历的主要内容,如果未能解决你的问题,请参考以下文章