-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path09_tree_algs.js
81 lines (68 loc) · 1.31 KB
/
09_tree_algs.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
const tree = [
{
v: 5,
c: [
{
v:10,
c: [
{
v:11,
}
]
},
{
v:7,
c: [
{
v:5,
c: [
{
v:1
}
]
}
]
}
]
},
{
v: 5,
c: [
{
v:10
},
{
v:15
}
]
}
];
const recursive = (tree) => {
let sum = 0;
tree.forEach(node => {
sum += node.v;
if (!node.c) {
return sum;
}
sum += recursive(node.c);
});
return sum;
};
const iteration = (tree) => {
if (!tree.length) {
return 0;
}
let sum = 0;
let stack = [];
tree.forEach(node => stack.push(node));
while (stack.length) {
const node = stack.pop();
sum += node.v;
if (node.c) {
node.c.forEach((child) => stack.push(child));
}
}
return sum;
};
console.log(iteration(tree));
// console.log(recursive(tree));