-
Notifications
You must be signed in to change notification settings - Fork 0
/
treesAndLinkedLists.js
298 lines (218 loc) · 5.91 KB
/
treesAndLinkedLists.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
// setup linked list
function LinkedListNode(value) {
this.value = value;
this.next = null;
}
var a = new LinkedListNode(1);
var b = new LinkedListNode(2);
var c = new LinkedListNode(3);
var d = new LinkedListNode(4);
a.next = b;
b.next = c;
c.next = d;
/////////////
// iterate through LL
function iterateList(rootNode){
var current = rootNode
while(current){
console.log(current.value)
current = current.next
}
}
// iterateList(a)
///////////
// reverse a LL
function reverseLinkedList(rootNode){
var current = rootNode.next
var last = rootNode
rootNode.next = null
while(current){
var temp = current.next
current.next = last
last = current
current = temp
}
return last
}
// reverseLinkedList(a)
////////////
// delete a node in a LL
function deleteNode(nodeToDelete){
var nextNode = nodeToDelete.next;
nodeToDelete.value = nextNode.value;
nodeToDelete.next = nextNode.next;
}
///////////
// is a LL a cycle
function cycle(node){
var slow = node
var fast = node.next
while (fast.next.next && slow.next){
if (fast === slow){
return true
} else {
fast = fast.next.next
slow = slow.next
}
}
return false
}
//////////////
// find the kth node in a LL
function findKth(node, k){
var tail = node
var current = node
for (var counter = 0; counter < k; counter++){
current = current.next
}
while (current) {
current = current.next
tail = tail.next
}
return tail
}
///////////////
// setup binary tree
function BinaryTreeNode(value) {
this.value = value;
this.left = null;
this.right = null;
}
BinaryTreeNode.prototype.insertLeft = function(value) {
this.left = new BinaryTreeNode(value);
};
BinaryTreeNode.prototype.insertRight = function(value) {
this.right = new BinaryTreeNode(value);
};
var node = new BinaryTreeNode(30)
node.insertLeft(10)
node.left.insertLeft(0)
node.left.insertRight(20)
node.insertRight(50)
node.right.insertLeft(40)
node.right.insertRight(60)
//////
// depth first search
function iterateThroughTreeDFS(rootNode){
var nodeStack = [rootNode]
while(nodeStack.length){
var poppedNode = nodeStack.pop()
console.log(poppedNode.value)
if (poppedNode.right) nodeStack.push(poppedNode.right)
if (poppedNode.left) nodeStack.push(poppedNode.left)
}
}
// iterateThroughTreeDFS(node)
// breadth first search
function iterateThroughTreeBFS(rootNode){
var nodeQueue = [node]
while(nodeQueue.length){
var shiftedNode = nodeQueue.shift()
console.log(shiftedNode.value)
if (shiftedNode.left) nodeQueue.push(shiftedNode.left)
if (shiftedNode.right) nodeQueue.push(shiftedNode.right)
}
}
////////////////
// Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.
function isBalanced(treeRoot) {
var depths = []
var stack = [[treeRoot, 0]]
while(stack.length) {
var popped = stack.pop()
var node = popped[0]
var depth = popped[1]
if (!node.left && !node.right) {
if (!depths.includes(depth)) {
depths.push(depth)
if ((depths.length > 2) ||
(depths.length === 2 && Math.abs(depths[0] - depths[1]) > 1)) {
return false;
}
}
} else {
if (node.left) {
stack.push([node.left, depth + 1])
}
if (node.right) {
stack.push([node.right, depth + 1])
}
}
}
return true;
}
///////////////////////////
// determine if the tree is a valid binary tree
function isBinarySearchTree(treeRoot) {
var nodeAndBoundsStack = [];
nodeAndBoundsStack.push({node: treeRoot, lowerBound: -Infinity, upperBound: Infinity});
while (nodeAndBoundsStack.length) {
var nodeAndBounds = nodeAndBoundsStack.pop()
var node = nodeAndBounds.node
var lowerBound = nodeAndBounds.lowerBound
var upperBound = nodeAndBounds.upperBound
if (node.value <= lowerBound || node.value >= upperBound) {
return false;
}
if (node.left) {
nodeAndBoundsStack.push({node: node.left, lowerBound: lowerBound, upperBound: node.value});
}
if (node.right) {
nodeAndBoundsStack.push({node: node.right, lowerBound: node.value, upperBound: upperBound});
}
}
return true;
}
///////////////////////////
// find the second largest node in a tree
function findSecondLargest(rootNode) {
var current = rootNode;
while (current) {
if (current.left && !current.right) {
return findLargest(current.left);
}
if (current.right && !current.right.left && !current.right.right) {
return current.value;
}
current = current.right;
}
}
function findLargest(rootNode) {
var current = rootNode;
while (current) {
if (!current.right) return current.value;
current = current.right;
}
}
/////////////////
// recursive Binary Search of Tree
function binarySearchThroughTree(node, target){
if (node){
if (node.value === target){
return true
} else if (node.value > target){
return binarySearchThroughTree(node.left, target)
} else if (node.value < target){
return binarySearchThroughTree(node.right, target)
}
}
return false
}
//////////////////////////////
// given a sorted array of values, create a binary tree
function createMinimalHeightBST(arr, start, end) {
if (start > end) return null;
const middleIndex = Math.ceil((start + end) / 2),
rootNode = new TreeNode(arr[middleIndex]);
console.log(rootNode.value)
rootNode.left = createMinimalHeightBST(arr, start, middleIndex - 1);
rootNode.right = createMinimalHeightBST(arr, middleIndex + 1, end);
return rootNode;
}
const arr = [1, 2, 3, 4, 5]
createMinimalHeightBST(arr, 0, arr.length - 1)
function TreeNode(value) {
this.value = value;
this.left = null
this.right = null;
}