-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTreeZigzag.java
More file actions
78 lines (55 loc) · 1.61 KB
/
Copy pathTreeZigzag.java
File metadata and controls
78 lines (55 loc) · 1.61 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
68
69
70
71
72
73
74
75
76
77
78
/**
* 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>> zigzagLevelOrder(TreeNode root) {
List<List<Integer>> output = new ArrayList<>();
if (root == null) {
return output;
}
Deque<Integer> stack = new ArrayDeque<>();
Deque<TreeNode> queue = new ArrayDeque<>();
queue.offer(root);
boolean isZigZag = false;
int limit = 1;
TreeNode curr;
while (!queue.isEmpty()) {
int currLimit = limit;
limit = 0;
List<Integer> tempOutput = new ArrayList<>();
while (currLimit-- > 0) {
curr = queue.poll();
if (!isZigZag)
tempOutput.add(curr.val);
else
stack.push(curr.val);
if (curr.left != null) {
limit++;
queue.offer(curr.left);
}
if (curr.right != null) {
limit++;
queue.offer(curr.right);
}
}
while (!stack.isEmpty()) {
tempOutput.add(stack.pop());
}
output.add(tempOutput);
isZigZag = !isZigZag;
}
return output;
}
}