forked from striver79/FreeKaTreeSeries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
L13_allTraversalsJava
85 lines (63 loc) · 1.78 KB
/
L13_allTraversalsJava
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
/**
* 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 Pair {
TreeNode node;
int num;
Pair(TreeNode _node, int _num) {
num = _num;
node = _node;
}
}
class Solution {
public List<Integer> postorderTraversal(TreeNode root) {
Stack<Pair> st = new Stack<Pair>();
st.push(new Pair(root, 1));
List<Integer> pre = new ArrayList<>();
List<Integer> in = new ArrayList<>();
List<Integer> post = new ArrayList<>();
if(root == null) return post;
while(!st.isEmpty()) {
Pair it = st.pop();
// this is part of pre
// increment 1 to 2
// push the left side of the tree
if(it.num == 1) {
pre.add(it.node.val);
it.num++;
st.push(it);
if(it.node.left != null) {
st.push(new Pair(it.node.left, 1));
}
}
// this is a part of in
// increment 2 to 3
// push right
else if(it.num == 2) {
in.add(it.node.val);
it.num++;
st.push(it);
if(it.node.right != null) {
st.push(new Pair(it.node.right, 1));
}
}
// don't push it back again
else {
post.add(it.node.val);
}
}
return post;
}
}