-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathPostorderTraversal.js
83 lines (77 loc) · 2.32 KB
/
PostorderTraversal.js
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
79
80
81
82
83
/**
* @author Anirudh Sharma
*
* Given a binary tree, write an iterative and recursive solution to traverse the tree using preorder traversal.
*/
const postorderTraversalRecursively = (root) => {
if (root === null) {
return null;
}
postorderTraversalRecursively(root.left);
postorderTraversalRecursively(root.right);
console.log(root.data);
};
const postorderTraversalIteratively = (root) => {
if (root === null) {
return null;
}
// Stack to store the nodes of the tree
const nodes = [];
// Add root to the stack
nodes.push(root);
// Another stack to store the post order traversal
const postOrder = [];
// Loop until the stack is not empty
while (nodes.length > 0) {
// Get the current node from the stack
let current = nodes.pop();
postOrder.push(current.data);
// Push left child of the tree to stack if not null
if (current.left !== null) {
nodes.push(current.left);
}
// Push right child of the tree to stack if not null
if (current.right !== null) {
nodes.push(current.right);
}
}
while (postOrder.length > 0) {
console.log(postOrder.pop());
}
};
function Node(data, left, right) {
this.data = (data === undefined ? 0 : data);
this.left = (left === undefined ? null : left);
this.right = (right === undefined ? null : right);
}
const main = () => {
let root = new Node(1);
root.left = new Node(3);
root.right = new Node(2);
console.log("Recursively:");
postorderTraversalRecursively(root);
console.log("Iteratively:");
postorderTraversalIteratively(root);
console.log();
root = new Node(10);
root.left = new Node(20);
root.right = new Node(30);
root.left.left = new Node(40);
root.left.right = new Node(60);
console.log("Recursively:");
postorderTraversalRecursively(root);
console.log("Iteratively:");
postorderTraversalIteratively(root);
console.log();
root = new Node(1);
root.left = new Node(2);
root.right = new Node(3);
root.left.left = new Node(4);
root.left.right = new Node(5);
console.log("Recursively:");
postorderTraversalRecursively(root);
console.log("Iteratively:");
postorderTraversalIteratively(root);
console.log();
};
main();