-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBinaryTreeLevelOrder.java
More file actions
67 lines (47 loc) · 1.39 KB
/
Copy pathBinaryTreeLevelOrder.java
File metadata and controls
67 lines (47 loc) · 1.39 KB
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
57
58
59
60
61
62
63
64
65
66
67
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
public List<List<Integer>> levelOrder(TreeNode root) {
Queue<TreeNode> queue = new ArrayDeque<>();
List<List<Integer>> output = new ArrayList<>();
Map<TreeNode, List<Integer>> trackLimit = new HashMap<>();
if (root == null){
return output;
}
queue.offer(root);
trackLimit.put(root, Arrays.asList(root.val));
int limit =1;
while(!queue.isEmpty()){
int curLimit = limit;
limit = 0;
List<Integer> tempOutput = new ArrayList<>();
while(curLimit-- > 0) {
TreeNode curr = queue.poll();
tempOutput.add(curr.val);
if (curr.left != null){
queue.offer(curr.left);
limit++;
}
if (curr.right != null) {
queue.offer(curr.right);
limit++;
}
}
output.add(tempOutput);
}
return output;
}
}