-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayBinarySearchTree.ts
More file actions
271 lines (237 loc) · 5.56 KB
/
Copy pathArrayBinarySearchTree.ts
File metadata and controls
271 lines (237 loc) · 5.56 KB
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/* 二叉搜索树的顺序存储 */
interface Data<T> {
val: T;
deleted: boolean;
}
class ArrayBinarySearchTree<T = number> {
data: Data<T>[];
len: number;
constructor() {
// 根节点从1开始存储
this.data = [null];
this.len = 0;
}
exist(index: number) {
return this.data[index] !== undefined;
}
/* 添加 */
insert(v: T) {
const data = this.data;
const node = {
val: v,
deleted: false
};
this.len++;
// 根节点不存在,则插入根节点位置
if (!this.exist(1)) {
data[1] = node;
return;
}
// 根节点开始,寻找插入位置
let index = 1;
let inserted = false;
while (!inserted) {
const current = data[index];
if (v < current.val) {
// 小于当前节点,
const leftChild = index << 1;
if (this.exist(leftChild)) {
// 存在左子节点,则继续往左子树查找
index = leftChild;
} else {
// 否则,插入到当前节点的左子节点
data[leftChild] = node;
inserted = true;
}
} else {
// 大于或者等于当前节点
const rightChild = (index << 1) + 1;
if (this.exist(rightChild)) {
// 存在右子节点,则继续往右子树查找
index = rightChild;
} else {
// 否则,插入到当前节点的右子节点
data[rightChild] = node;
inserted = true;
}
}
}
}
/* 移除 */
delete(v: T) {
if (!this.len) {
return;
}
const data = this.data;
// 从根节点开始
let index = 1;
let deleted = false;
while (!deleted) {
const current = data[index];
if (v < current.val) {
// 小于当前节点,往左子树找
const leftChild = index << 1;
// 不存在
deleted = !this.exist(leftChild);
if (!deleted) {
index = leftChild;
}
} else {
// 等于当前节点,
if (v === current.val) {
data[index].deleted = true;
this.len--;
}
// 继续往右子树查找
const rightChild = (index << 1) + 1;
deleted = !this.exist(rightChild);
if (!deleted) {
index = rightChild;
}
}
}
}
/* 查找,返回所有的下标 */
find(v: T): number[] {
if (!this.len) {
return [];
}
const result = [];
const data = this.data;
let index = 1;
let finished = false;
let found = false;
while (!finished) {
const current = data[index];
if (v < current.val) {
const leftChild = index << 1;
finished = !this.exist(leftChild);
if (!finished) {
index = leftChild;
}
} else {
found = !current.deleted && current.val === v;
if (found) {
result.push(index);
}
const rightChild = (index << 1) + 1;
finished = !this.exist(rightChild);
if (!finished) {
index = rightChild;
}
}
}
return result;
}
/* 查找最小值 */
findMin(): T | null {
if (!this.len) {
return null;
}
const data = this.data;
let index = 1;
let min = null;
let finished = false;
while (!finished) {
const current = data[index];
index = index << 1;
finished = !this.exist(index);
if (!current.deleted) {
min = current.val;
}
}
return min;
}
/* 查找最大值 */
findMax(): T | null {
if (!this.len) {
return null;
}
const data = this.data;
let index = 1;
let max = null;
let finished = false;
while (!finished) {
const current = data[index];
index = (index << 1) + 1;
finished = !this.exist(index);
if (!current.deleted) {
max = current.val;
}
}
return max;
}
/* 先序遍历 */
preOrder() {
if (!this.len) {
return [];
}
const data = this.data;
const result = [];
const visit = (index: number, result: T[]) => {
if (!this.exist(index)) {
return;
}
// 先访问当前节点
const current = data[index];
if (!current.deleted) {
result.push(current.val);
}
// 再访问左边节点
visit(index << 1, result);
// 最后访问右边节点
visit((index << 1) + 1, result);
}
visit(1, result);
return result;
}
/* 中序遍历 */
inOrder() {
if (!this.len) {
return [];
}
const data = this.data;
const result = [];
const visit = (index: number, result: T[]) => {
if (!this.exist(index)) {
return;
}
// 先访问左边节点
visit(index << 1, result);
// 再访问当前节点
const current = data[index];
if (!current.deleted) {
result.push(current.val);
}
// 最后访问右边节点
visit((index << 1) + 1, result);
}
visit(1, result);
return result;
}
/* 后序遍历 */
postOrder() {
if (!this.len) {
return [];
}
const data = this.data;
const result = [];
const visit = (index: number, result: T[]) => {
if (!this.exist(index)) {
return;
}
// 先访问左边节点
visit(index << 1, result);
// 再访问右边节点
visit((index << 1) + 1, result);
// 最后访问当前节点
const current = data[index];
if (!current.deleted) {
result.push(current.val);
}
}
visit(1, result);
return result;
}
}
export default ArrayBinarySearchTree;