-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestTree.js
66 lines (65 loc) · 1.12 KB
/
testTree.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
const treeData = {
title: "p",
value: 0,
children: [
{
title: "p_c1",
value: 0,
children: [
{
title: "p_c1_c1",
value: 0
},
{
title: "p_c1_c2",
value: 0
}
]
},
{
title: "p_c2",
value: 0,
children: [
{
title: "p_c2_c1",
value: 0
},
{
title: "p_c2_c2",
value: 0
}
]
}
]
};
const recurrence = function(treeData, name) {
let flag = false;
if (treeData.title === name) {
++treeData.value;
flag = true;
} else {
if (treeData.children && treeData.children.length !== 0) {
treeData.children.forEach(v => {
if (recurrence(v, name)) {
treeData.value++;
flag = true;
}
});
}
}
return flag;
};
(function solution() {
const name = {
zhangsan: "p_c1_c1",
lisi: "p_c1_c1",
wangwu: "p_c2_c1",
zhaoliu: "p_c2_c2",
jx: "p_c1_c2",
wfk: "p_c2_c2"
};
for (let i in name) {
recurrence(treeData, name[i]);
}
console.log(treeData);
})();