# 24.微派-生成树形结构
const flatArr = [
{
id: 1,
name: "爷爷1",
pid: 0,
},
{
id: 2,
name: "爷爷2",
pid: 0,
},
{
id: 233,
name: "儿子1",
pid: 12,
},
{
id: 334,
name: "儿子2",
pid: 21,
},
{
id: 12,
name: "爸爸1",
pid: 1,
},
{
id: 21,
name: "爸爸2",
pid: 2,
},
];
// 简化版
// function listToTreeSimple(data) {
// const res = [];
// data.forEach((item) => {
// const parent = data.find((node) => node.id === item.pid);
// if (parent) {
// parent.children = parent.children || [];
// parent.children.push(item);
// } else {
// // * 根节点
// res.push(item);
// }
// });
// console.log(res);
// }
// listToTreeSimple(flatArr);
// 使用哈希表版
function listToTreeSimple(data) {
const res = [];
const obj = {};
data.forEach((item) => (obj[item.id] = item));
data.forEach((item) => {
const parent = obj[item.parentId];
if (parent) {
parent.children = parent.children || [];
parent.children.push(item);
} else {
// * 根节点
res.push(item);
}
});
console.log(res);
}
listToTreeSimple(flatArr);
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
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