-
Notifications
You must be signed in to change notification settings - Fork 8
/
Main.java
76 lines (61 loc) · 1.89 KB
/
Main.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
75
76
import java.util.Stack;
class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) { val = x; }
}
/*
The binary tree in this example is shown as follow
1
/ \
2 3
/ \ /
4 5 6
/
7
post-order traversal: 4 7 5 2 6 3 1
*/
public class Main {
public static void postorderTraversalByRecursion(TreeNode root) {
if (root == null) return;
postorderTraversalByRecursion(root.left);
postorderTraversalByRecursion(root.right);
System.out.print(root.val + " ");
}
public static void postorderTraversal(TreeNode root) {
if (root == null) return;
Stack<TreeNode> nodeStack = new Stack<>();
nodeStack.push(root);
TreeNode pre = null;
while (!nodeStack.empty()) {
TreeNode cur = nodeStack.peek();
if (cur.left != null && cur.left != pre && cur.right != pre) {
nodeStack.push(cur.left);
} else if (cur.right != null && cur.right != pre) {
nodeStack.push(cur.right);
} else {
System.out.print(cur.val + " ");
pre = cur;
nodeStack.pop();
}
}
}
public static TreeNode generateBTree(Integer[] nodes, int index) {
TreeNode node = null;
if (index < nodes.length && nodes[index] != null) {
node = new TreeNode(nodes[index]);
node.left = generateBTree(nodes, index * 2 + 1);
node.right = generateBTree(nodes, index * 2 + 2);
}
return node;
}
public static void main(String[] args) {
Integer[] nodes = {1, 2, 3, 4, 5, 6, null, null, null, 7};
TreeNode root = generateBTree(nodes, 0);
postorderTraversalByRecursion(root);
System.out.println();
postorderTraversal(root);
System.out.println();
}
}