-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathNAryTreeLevelOrderTraversal.java
56 lines (45 loc) · 1.32 KB
/
NAryTreeLevelOrderTraversal.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// https://leetcode.com/problems/n-ary-tree-level-order-traversal
// T: O(N)
// S: O(N)
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;
public class NAryTreeLevelOrderTraversal {
public static class Node {
public int val;
public List<Node> children;
public Node() {}
public Node(int _val) {
val = _val;
}
public Node(int _val, List<Node> _children) {
val = _val;
children = _children;
}
}
public List<List<Integer>> levelOrder(Node root) {
if (root == null) {
return new ArrayList<>();
}
final List<List<Integer>> result = new ArrayList<>();
final Queue<Node> queue = new LinkedList<>();
List<Integer> current = new ArrayList<>();
queue.add(root);
queue.add(null);
while (!queue.isEmpty()) {
final Node node = queue.poll();
if (node == null) {
result.add(current);
current = new ArrayList<>();
if (!queue.isEmpty()) {
queue.add(null);
}
continue;
}
current.add(node.val);
queue.addAll(node.children);
}
return result;
}
}