-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinarySearchTree.js
68 lines (60 loc) · 1.32 KB
/
binarySearchTree.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
class Node {
constructor(val) {
this.value = val;
this.left = null;
this.right = null;
}
}
class BinarySearchTree {
constructor() {
this.root = null;
}
insert(val) {
const newNode = new Node(val);
if (!this.root) {
this.root = newNode;
return this;
} else {
let current = this.root;
while (true) {
if (val === current.value) return undefined;
// Left branch
if (val < current.value) {
if (!current.left) {
current.left = newNode;
return this;
}
current = current.left;
// Right branch
} else {
if (!current.right) {
current.right = newNode;
return this;
}
current = current.right;
}
}
}
}
contains(val) {
if (!this.root) return false;
let current = this.root;
let found = false;
while (current && !found) {
if (val < current.value) current = current.left;
else if (val > current.value) current = current.right;
else found = true;
}
return found;
}
}
const bestie = new BinarySearchTree();
bestie.insert(5);
bestie.insert(8);
bestie.insert(3);
bestie.insert(2);
bestie.insert(9);
console.log(bestie.contains(8));
// 5
// 3 8
// 2 4 6 9