-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataToTree.js
252 lines (213 loc) · 5.29 KB
/
dataToTree.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
* Author : BREN0sx
* Date : 2021-10-27
* LastEditors : BREN0sx
* LastEditTime : 2021-11-04
* FilePath : /js-base/src/scene/dataToTree.js
* description : Dados do array para a estrutura da tree
* Existem muitas variantes do tipo de dados desta questão e todas as empresas gostam de produzir
* Copyright (c) 2023 by BREN0sx, All Rights Reserved.
*/
// Ant Financial Services-Insurance Questões de um lado do teste escrito
// interview/ali-baoxian.js
//Tópico 2 Complete a função convert2(list) para converter lista
// dados de origem
const list = [
{
id: 19,
parentId: 0,
},
{
id: 18,
parentId: 16,
},
{
id: 17,
parentId: 16,
},
{
id: 16,
parentId: 0,
},
]
// Estrutura de dados convertida
const tree = {
id: 0,
children: [
{
id: 19,
parentId: 0,
},
{
id: 16,
parentId: 0,
children: [
{
id: 18,
parentId: 16,
},
{
id: 17,
parentId: 16,
},
],
},
],
}
/**
* @param list {object[]},
* @param parentKey {string}
* @param currentKey {string}
* @param rootValue {any}
* @return object
*/
function convert2(list, parentKey, currentKey, rootValue) {
}
const result = convert2(list, 'parentId', 'id', 0)
console.log('convert', JSON.stringify(result))
// Lado de Weimeng
// dados de origem
const arr = [{
id: 0,
data: 1,
}, {
pid: 0,
id: 1,
data: 2,
}, {
pid: 0,
id: 2,
data: 3,
}, {
pid: 2,
id: 3,
data: 4,
}]
// const tree = [{
// id: 0,
// data: 1,
// children: [
// {
// pid: 0,
// id: 1,
// data: 2,
// },
// {
// pid: 0,
// id: 2,
// data: 3,
// children: [
// {
// pid: 2,
// id: 3,
// data: 4
// }
// ]
// },
// ]
// }]
function toTree(arr) {
}
// Cuidado com a resposta
// Ant Financeira - Seguros
// function convert2(list, parentKey, currentKey, rootValue) {
// // inicialização da estrutura de dados
// let obj = {
// [currentKey]: rootValue,
// children: []
// }
// let num = 0
// // Para todos os nós adicionados à estrutura pai
// while (num !== list.length) {
// list.forEach((item, index) => {
// if (!item) return
// // coletar o mais externo
// if (item[parentKey] === obj[currentKey]) {
// obj.children.push({
// ...item,
// children: []
// })
// list[index] = null
// num++
// } else {
// // Encontrar níveis recursivamente
// helpFn(item, index, obj.children)
// }
// // Encontrar níveis recursivamente
// })
// }
// // Adicionar hierarquia ao item
// function helpFn(item, initIndex, arr) {
// // encontrar nível atual
// let index = arr.findIndex(ele => ele[currentKey] === item[parentKey])
// if (index !== -1) {
// arr[index].children.push({
// ...item,
// children: []
// })
// list[initIndex] = null
// num++
// return true
// }
// // Encontre elementos de seus filhos
// for (let ele of arr.values()) {
// if (helpFn(item, index, ele.children)) {
// // Encontre o nível do item Cancelar recursão
// return true
// }
// }
// }
// return obj
// }
// Lado de Weimeng
// ciclo
// function toTree(arr) {
// const cache = {} // tabela de mapeamento do map
// const result = [] // resultado da inicialização
// // construir tabela de mapeamento
// arr.forEach((item) => {
// cache[item.id] = item
// })
// arr.forEach((item) => {
// const parent = cache[item.pid]
// if (!parent) {
// result.push(item) // Inicialmente adicione elementos
// } else {
// // Os filhos que adicionam este elemento ao elemento pai são adicionados ao elemento pai por meio do mecanismo de referência do ponteiro do objeto
// ; (parent.children || (parent.children = [])).push(item)
// }
// })
// // dados de origem
// return result
// }
// // recursão
// function checkoutArr(oldArr) {
// let newArr = []
// function helpFn(item, arr) {
// if (item.pid === undefined) {
// newArr.push({
// ...item,
// children: []
// })
// return true
// }
// let index = arr.findIndex(arrItem => {
// return item.pid === arrItem.id
// })
// if (index !== -1) {
// arr[index].children.push({
// ...item,
// children: []
// })
// return true
// }
// // não encontrou
// for (let ele of arr.values()) {
// if (helpFn(item, ele.children)) return true
// }
// }
// oldArr.forEach(element => {
// helpFn(element, newArr)
// });
// return newArr
// }