-
Notifications
You must be signed in to change notification settings - Fork 0
/
bst.js
508 lines (421 loc) · 10.6 KB
/
bst.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
// tags: #bst #data-structure
// version 1
class BinarySearchTreeNode {
constructor(key, value) {
this._key = key;
this._value = value;
this._left = null;
this._right = null;
this._parent = null;
}
setKey(key) {
this._key = key;
return this;
}
getKey() {
return this._key;
}
setValue(value) {
this._value = value;
return this;
}
getValue() {
return this._value;
}
setLeft(left) {
if (left && !(left instanceof BinarySearchTreeNode)) {
throw new Error("setLeft expects a BinarySearchTreeNode or null");
}
this._left = left || null;
return this;
}
getLeft() {
return this._left;
}
hasLeft() {
return this._left instanceof BinarySearchTreeNode;
}
setRight(right) {
if (right && !(right instanceof BinarySearchTreeNode)) {
throw new Error("setRight expects a BinarySearchTreeNode or null");
}
this._right = right || null;
return this;
}
getRight() {
return this._right;
}
hasRight() {
return this._right instanceof BinarySearchTreeNode;
}
setParent(parent) {
if (parent && !(parent instanceof BinarySearchTreeNode)) {
throw new Error("setParent expects a BinarySearchTreeNode or null");
}
this._parent = parent || null;
return this;
}
getParent() {
return this._parent;
}
hasParent() {
return this._parent instanceof BinarySearchTreeNode;
}
isRoot() {
return this._parent === null;
}
isLeaf() {
return !this.hasLeft() && !this.hasRight();
}
}
class BinarySearchTree {
constructor() {
this._root = null;
this._count = 0;
}
root() {
return this._root;
}
count() {
return this._count;
}
clear() {
this._root = null;
this._count = 0;
}
insert(key, value) {
const newNode = new BinarySearchTreeNode(key, value);
const insertRecursive = (current) => {
if (key < current.getKey()) {
if (current.hasLeft()) {
insertRecursive(current.getLeft());
} else {
current.setLeft(newNode.setParent(current));
this._count += 1;
}
} else if (key > current.getKey()) {
if (current.hasRight()) {
insertRecursive(current.getRight());
} else {
current.setRight(newNode.setParent(current));
this._count += 1;
}
} else {
// 相同 key 覆盖,bst 不会创建重复节点
current.setValue(value);
}
};
if (this._root === null) {
this._root = newNode;
this._count += 1;
} else {
insertRecursive(this._root);
}
return newNode;
}
has(key) {
const hasRecursive = (current) => {
if (current === null) {
return false;
}
if (key === current.getKey()) {
return true;
}
if (key < current.getKey()) {
return hasRecursive(current.getLeft());
}
return hasRecursive(current.getRight());
};
return hasRecursive(this._root);
}
find(key) {
const findRecursive = (current) => {
if (current === null) {
return null;
}
if (key === current.getKey()) {
return current;
}
if (key < current.getKey()) {
return findRecursive(current.getLeft());
}
return findRecursive(current.getRight());
};
return findRecursive(this._root);
}
/**
* Finds the node with max key (most right) in the tree
*/
max(current = this._root) {
if (current === null) {
return null;
}
if (current.hasRight()) {
return this.max(current.getRight());
}
return current;
}
/**
* Finds the node with min key (most left) in the tree
*/
min(current = this._root) {
if (current === null) {
return null;
}
if (current.hasLeft()) {
return this.min(current.getLeft());
}
return current;
}
/**
* Returns the node with the biggest key less or equal to k
*/
lowerBound(k, includeEqual = true) {
let lowerBound = null;
const lowerBoundRecursive = (current) => {
if (current === null) {
return lowerBound;
}
const currentKey = current.getKey();
if (currentKey < k || (includeEqual && currentKey === k)) {
lowerBound = current;
return lowerBoundRecursive(current.getRight());
}
return lowerBoundRecursive(current.getLeft());
};
return lowerBoundRecursive(this._root);
}
/**
* Returns the node with the smallest key bigger or equal k
*/
upperBound(k, includeEqual = true) {
let upperBound = null;
const upperBoundRecursive = (current) => {
if (current === null) {
return upperBound;
}
const currentKey = current.getKey();
if (currentKey > k || (includeEqual && currentKey === k)) {
upperBound = current;
return upperBoundRecursive(current.getLeft());
}
return upperBoundRecursive(current.getRight());
};
return upperBoundRecursive(this._root);
}
remove(key) {
const removeRecursively = (k, current) => {
if (current === null) {
return false;
}
if (k < current.getKey()) {
return removeRecursively(k, current.getLeft());
}
if (k > current.getKey()) {
return removeRecursively(k, current.getRight());
}
// current node is the node to remove
// case 1: node has no children
if (current.isLeaf()) {
if (current.isRoot()) {
this._root = null;
} else if (k < current.getParent().getKey()) {
current.getParent().setLeft(null);
} else {
current.getParent().setRight(null);
}
this._count -= 1;
return true;
}
// case 2: node has a left child and no right child
if (!current.hasRight()) {
if (current.isRoot()) {
this._root = current.getLeft();
} else if (k < current.getParent().getKey()) {
current.getParent().setLeft(current.getLeft());
} else {
current.getParent().setRight(current.getLeft());
}
current.getLeft().setParent(current.getParent());
this._count -= 1;
return true;
}
// case 3: node has a right child and no left child
if (!current.hasLeft()) {
if (current.isRoot()) {
this._root = current.getRight();
} else if (k < current.getParent().getKey()) {
current.getParent().setLeft(current.getRight());
} else {
current.getParent().setRight(current.getRight());
}
current.getRight().setParent(current.getParent());
this._count -= 1;
return true;
}
// case 4: node has left and right children
const minRight = this.min(current.getRight());
current.setKey(minRight.getKey()).setValue(minRight.getValue());
return removeRecursively(minRight.getKey(), minRight);
};
return removeRecursively(key, this._root);
}
// 排序
traverseInOrder(cb) {
if (typeof cb !== "function") {
throw new Error(".traverseInOrder expects a callback function");
}
const traverseRecursive = (current) => {
if (current === null) return;
traverseRecursive(current.getLeft());
cb(current);
traverseRecursive(current.getRight());
};
traverseRecursive(this._root);
}
}
// version 2
// with loop
class Node {
constructor(val) {
this.val = val;
this.right = null;
this.left = null;
this.count = 1; // 重复节点计数, 也可忽略不维护此属性
}
}
class BST {
constructor() {
this.root = null;
}
create(val) {
const newNode = new Node(val);
let current = this.root;
if (!this.root) {
this.root = newNode;
return this;
}
while (true) {
if (val === current.val) {
current.count++;
return this;
}
if (val < current.val) {
if (!current.left) {
current.left = newNode;
return this;
} else current = current.left;
} else {
if (!current.right) {
current.right = newNode;
return this;
} else current = current.right;
}
}
}
find(val) {
if (!this.root) return null;
let current = this.root;
while (current) {
if (val < current.val) current = current.left;
else if (val > current.val) current = current.right;
else break;
}
if (current?.val === val) return current;
return null;
}
BFS(start) {
const data = [];
const queue = [];
let current = start ? this.find(start) : this.root;
queue.push(current);
while (queue.length) {
current = queue.shift();
data.push(current);
if (current.left) queue.push(current.left);
if (current.right) queue.push(current.right);
}
return data;
}
delete(val) {
if (!this.root) return false;
let current = this.root;
let parent;
const deleteCurrent = (isRoot) => {
if (current.count > 1) {
current.count--;
return;
}
const children = this.BFS(current.val); // bfs need do before subtree be detached
if (isRoot) {
this.root = null;
} else if (current.val < parent.val) {
parent.left = null;
} else {
parent.right = null;
}
children.slice(1).forEach((child) => {
for (let i = 0; i < child.count; i++) {
this.create(child.val);
}
});
};
// isRoot
if (current.val === val) {
deleteCurrent(true);
return current;
}
while (current) {
if (val < current.val) {
parent = current;
current = current.left;
} else if (val > current.val) {
parent = current;
current = current.right;
} else break;
}
if (current?.val === val) {
deleteCurrent();
return current;
}
return false;
}
// k = 1 means the smallest
kthSmallest(k) {
let i = 0;
let val = null;
travel(this.root);
return val;
function travel(node) {
if (!node) return;
travel(node.left);
if (val) return; // stop parent travelling
if (++i === k) {
val = node.val;
return;
}
travel(node.right);
}
}
}
/* test code */
const assert = require("node:assert/strict");
const bst = new BinarySearchTree();
bst.insert(50, "v1");
bst.insert(80, "v2");
bst.insert(30, "v3");
bst.insert(90, "v4");
bst.insert(60, "v5");
bst.insert(40, "v6");
bst.insert(20, "v7");
assert.equal(bst.lowerBound(50).getKey(), 50);
const tree = new BST();
tree.create(10);
tree.create(4);
tree.create(4);
tree.create(5);
tree.create(12);
tree.create(2);
console.dir(tree, { depth: null });
tree.delete(10);
console.dir(tree, { depth: null });