-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbst.js
204 lines (169 loc) · 4.96 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
//Binary Search Tree- we are assuming we will not be getting duplicates.
class Node {
constructor(value) {
this.value = value;
this.left = null;
this.right = null;
}
}
class BST {
constructor() {
this.root = null;
}
push(value) {
const nodeToAdd = new Node(value);
let currentNode = this.root;
//if there is no root, then there are no nodes
if (!currentNode) {
this.root = nodeToAdd;
return "Node added is the first node.";
}
/******** iteration way ********/
// while(currentNode){
// if(value < currentNode.value){
// if(!currentNode.left){
// currentNode.left = nodeToAdd;
// return nodeToAdd;
// } else {
// currentNode = currentNode.left;
// }
// }else{
// if(!currentNode.right){
// currentNode.right=nodeToAdd;
// return nodeToAdd;
// }else{
// currentNode = currentNode.right;
// }
// }
// }
/*******************************/
//recursive way
let findNode = (value) => {
if (value < currentNode.value) {
if (!currentNode.left) {
currentNode.left = nodeToAdd;
return nodeToAdd;
} else {
currentNode = currentNode.left;
findNode(value);
}
} else {
if (!currentNode.right) {
currentNode.right = nodeToAdd;
return nodeToAdd;
} else {
currentNode = currentNode.right;
findNode(value);
}
}
}
findNode(value);
}
//get max height/depth of BST
maxHeight(node) {
let getHeight = (node) => {
if (!node) {
return 0;
}
let left = getHeight(node.left);
let right = getHeight(node.right);
return (Math.max(left, right) + 1);
}
if (!node) {
node = this.root;
}
return getHeight(node);
}
//prints value of node
printValue(node) {
if (!node) {
node = this.root;
}
return console.log(node.value);
}
//does a preorder traversal through BST and prints out each node value
preorderTraversal(node) {
let preorderPrint = (node) => {
if (!node) {
return "No tree.";
}
this.printValue(node);
preorderPrint(node.left);
preorderPrint(node.right);
}
if (!node) {
node = this.root;
}
return preorderPrint(node);
}
//does an inorder traversal through BST and prints out each node value
inorderTraversal(node) {
let inorderPrint = (node) => {
if (!node) {
return "No tree.";
}
inorderPrint(node.left);
this.printValue(node);
inorderPrint(node.right);
}
if (!node) {
node = this.root;
}
return inorderPrint(node);
}
//does a postorder traversal through BST and prints out each node value
postorderTraversal(node) {
let postorderPrint = (node) => {
if (!node) {
return "No tree.";
}
postorderPrint(node.left);
postorderPrint(node.right);
this.printValue(node);
}
if (!node) {
node = this.root;
}
return postorderPrint(node);
}
//finds common ancestor of two values
findAncestor(val1, val2) {
let root = this.root;
while (root) {
if (val1 < root.value && val2 > root.value || val1 > root.value && val2 < root.value) {
return root.value;
} else if (val1 < root.value && val2 < root.value) {
root = root.left;
} else if (val1 > root.value && val2 > root.value) {
root = root.right;
}
}
return "No ancestor found";
}
}
//LETS TEST IT!
//Making a new BST
let bst = new BST();
console.log("Create a BST:")
console.log(bst);
bst.push(4);
bst.push(2);
bst.push(5);
bst.push(3);
bst.push(1);
console.log("BST:");
console.log(bst);
console.log("Max Height/depth:");
console.log(bst.maxHeight());
console.log("Preorder Traversal:");
bst.preorderTraversal();
console.log("Inorder Traversal:");
bst.inorderTraversal();
console.log("Postorder Traversal:");
bst.postorderTraversal();
console.log("ancestor of 1 and 5:");
console.log(bst.findAncestor(1, 5));
console.log("ancestor of 5 and 1:");
console.log(bst.findAncestor(5, 1));
console.log("ancestor of 1 and 3:");
console.log(bst.findAncestor(1, 3));