-
-
Notifications
You must be signed in to change notification settings - Fork 359
/
Copy pathtree.js
58 lines (49 loc) · 1.12 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
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) {
console.log(tree.id);
tree.children.forEach(dfsPreorder);
}
function dfsPostorder(tree) {
tree.children.forEach(dfsPostorder);
console.log(tree.id);
}
function dfsInorder(tree) {
if (!tree) {
return;
}
if (tree.children.length > 2) {
throw new Error("Postorder traversal is only valid for binary trees");
}
dfsInorder(tree.children[0]);
console.log(tree.id);
dfsInorder(tree.children[1]);
}
function dfsIterative(tree) {
const stack = [tree];
while (stack.length > 0) {
const current = stack.pop();
console.log(current.id);
stack.push(...current.children);
}
}
function bfs(tree) {
const queue = [tree];
while (queue.length > 0) {
const current = queue.shift();
console.log(current.id);
queue.push(...current.children);
}
}
const root = createTree(3, 3);
dfsPreorder(root);
dfsPostorder(root);
dfsIterative(root);
bfs(root);