-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree-bottom.js
38 lines (37 loc) · 1.16 KB
/
tree-bottom.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
//Quick and dirty method of finding the most distant nodes from the root in a binary tree represented as a string.
//(1 (2 (4 (8 () ()) (9 () ())) (5 (10 () ()) (11 () ()))) (3 (6 (12 () ()) (13 () ())) (7 (14 () ()) (15 () ()))))
//treeBottom parses and traverses simultaneously.
//Created for a timed code challenge.
function treeBottom(tree) {
var bottom = [];
var deepest = 0;
var current = 0;
var value = "";
for (var i = 0; i < tree.length; i++){
var here = tree[i];
switch (here){
case "(":
value = "";
current++;
break;
case ")":
value = "";
current--;
break;
case " ":
value = parseInt(value);
if (value) {
if (current>deepest) {
bottom = [];
deepest = current;
}
if (current >= deepest) bottom.push(value);
}
value = "";
break;
default:
value += here;
}
}
return bottom;
}