-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-search-tree.js
102 lines (83 loc) · 1.82 KB
/
binary-search-tree.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
class Node {
constructor(val) {
this.val = 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;
}
let node = this.root;
while (true) {
if (val === node.val) return;
if (val > node.val) {
if (node.right) {
node = node.right;
} else {
node.right = newNode;
return;
}
} else {
if (node.left) {
node = node.left;
} else {
node.left = newNode;
return;
}
}
}
}
// Breath-first Search
bfSearch() {
if (!this.root) return;
const queue = [this.root];
const visited = [];
while (queue.length) {
const shifted = queue.shift();
visited.push(shifted);
if (shifted.left) queue.push(shifted.left);
if (shifted.right) queue.push(shifted.right);
}
return visited;
}
// Depth-first Search
dfSeachPreOrder() {
const result = [];
const traverse = (node) => {
result.push(node);
if (node.left) traverse(node.left);
if (node.right) traverse(node.right);
};
traverse(this.root);
return result;
}
dfSeachPostOrder() {
const result = [];
const traverse = (node) => {
if (node.left) traverse(node.left);
if (node.right) traverse(node.right);
result.push(node);
};
traverse(this.root);
return result;
}
dfSeachInOrder() {
const result = [];
const traverse = (node) => {
if (node.left) traverse(node.left);
result.push(node);
if (node.right) traverse(node.right);
};
traverse(this.root);
return result;
}
}
const bst = new BinarySearchTree();