-
Notifications
You must be signed in to change notification settings - Fork 6
/
ZigZagLevelOrdering.java
77 lines (55 loc) · 1.7 KB
/
ZigZagLevelOrdering.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import java.util.ArrayList;
import java.util.List;
import java.util.Stack;
/**
* Created by achoudhary on 11/03/2016.
*/
// Definition for a binary tree node.
class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) { val = x; }
}
public class ZigZagLevelOrdering {
public List<List<Integer>> zigzagLevelOrder(TreeNode root) {
List<List<Integer>> result = new ArrayList<>();
if(root == null)
return result;
Stack<TreeNode> currStack = new Stack<>();
Stack<TreeNode> nextStack = new Stack<>();
Stack<TreeNode> tmp;
currStack.push(root);
boolean leftOrdering = true;
while(!currStack.isEmpty()){
List<Integer> proxyResult = new ArrayList<>();
while(!currStack.empty()){
TreeNode node = currStack.pop();
proxyResult.add(node.val);
if(leftOrdering){
if(node.left != null){
nextStack.push(node.left);
}
if(node.right != null){
nextStack.push(node.right);
}
}else{
if(node.right != null){
nextStack.push(node.right);
}
if(node.left != null){
nextStack.push(node.left);
}
}
}
result.add(proxyResult);
tmp = currStack;
currStack = nextStack;
nextStack = tmp;
leftOrdering = !leftOrdering;
}
return result;
}
public static void main(String[] args) {
}
}