forked from algorithm-archivists/algorithm-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree.js
88 lines (77 loc) · 1.78 KB
/
tree.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
84
85
86
87
function createTree(rows, children) {
if (rows === 0) {
return { id: rows, children: [] };
}
return {
id: rows,
children: [...Array(children).keys()].map(() => createTree(rows - 1, children))
};
}
function dfsPreorder(tree) {
if (!tree) {
return;
}
process.stdout.write(tree.id + " ");
tree.children.forEach(dfsPreorder);
}
function dfsPostorder(tree) {
if (!tree) {
return;
}
tree.children.forEach(dfsPostorder);
process.stdout.write(tree.id + " ");
}
function dfsInorder(tree) {
if (!tree) {
return;
}
switch (tree.children.length) {
case 2:
dfsInorder(tree.children[0]);
console.log(tree.id);
dfsInorder(tree.children[1]);
break;
case 1:
dfsInorder(tree.children[0]);
console.log(tree.id);
break;
case 0:
console.log(tree.id);
break;
default:
throw new Error("Postorder traversal is only valid for binary trees");
}
}
function dfsIterative(tree) {
const stack = [tree];
while (stack.length > 0) {
const current = stack.pop();
process.stdout.write(current.id + " ");
stack.push(...current.children);
}
}
function bfs(tree) {
const queue = [tree];
while (queue.length > 0) {
const current = queue.shift();
process.stdout.write(current.id + " ");
queue.push(...current.children);
}
}
const root = createTree(2, 3);
console.log("[#]\nRecursive DFS:");
dfsPreorder(root);
console.log();
console.log("[#]\nRecursive Postorder DFS:");
dfsPostorder(root);
console.log();
console.log("[#]\nStack-based DFS:");
dfsIterative(root);
console.log();
console.log("[#]\nQueue-based BFS:");
bfs(root);
console.log();
const root_binary = createTree(3, 2);
console.log("[#]\nRecursive Inorder DFS for Binary Tree:");
dfsInorder(root_binary);
console.log();