-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeap.js
393 lines (344 loc) · 8.42 KB
/
Heap.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
class IntHeap {
/**
* TODO: Should be implemented with inheritance (open/close principal)
* TODO: Cause of the async nature should this Heap get locked as soon as an operation is on-going
*
* Integer Heap
*
* @param {string} type
*
* @constructor
*/
constructor(type) {
this.items = [];
this.type = type || 'min';
}
/**
* Checks if the current heap is empty and throws an error if this is the case
*
* @method isEmpty
*
* @returns {void}
*/
isEmpty() {
if (this.items.length === 0) {
throw new Error('EMPTY HEAP!');
}
}
/**
* Removes items by value
*
* @method removeByValue
*
* @param {number} item
*
* @returns {boolean}
*/
async removeByValue(item) {
let indexToRemove;
let parent;
const itemsToRemove = await this.findIndicies(item).length;
for (let i = 0; i < itemsToRemove; i++) {
indexToRemove = await this.findIndex(item);
if (indexToRemove === (this.items.length - 1)) {
this.items.pop();
return true;
}
this.items[indexToRemove] = this.items.pop();
parent = this.parent(indexToRemove);
if (
this.hasLeftChild(indexToRemove)
&& (
!parent ||
this.comparePair(parent, this.items[indexToRemove])
)
) {
this.heapifyDown(indexToRemove);
return true;
}
this.heapifyUp(indexToRemove);
}
return true;
}
/**
* Returns all indicies where the value is equal the passed item (int)
*
* @method findIndicies
*
* @param {number} item
*
* @returns {Array<number>}
*/
async findIndicies(item) {
let result = [];
this.items.forEach(function(value, index) {
if (value === item) {
result.push(index);
}
});
return result;
}
/**
* Returns all items with their indexes where the value is equal the passed item (int)
*
* @method find
*
* @param {number} item
*
* @returns {Array<Object<index, value>}
*/
async find(item) {
let result = [];
this.items.forEach(function(value, index) {
if (value === item) {
result.push({
index: index,
value: value
});
}
});
return result;
}
/**
* Returns the first matching index
*
* @method findIndex
*
* @param {number} item
*
* @returns {Array<number>}
*/
async findIndex(item) {
return this.items.findIndex(function(value) {
return item === value;
});
}
/**
* Compares the two given items by the configured type of this heap
*
* @method comparePair
*
* @param {number} itemOne
* @param {number} itemTwo
*
* @returns {boolean}
*/
comparePair(itemOne, itemTwo) {
if (this.type === 'min') {
return itemOne <= itemTwo;
}
if (this.type === 'max') {
return itemOne >= itemTwo;
}
throw new Error('No valid heap type defined!');
}
/**
* Swaps indexOne with indexTwo
*
* @method swap
*
* @param {number} indexOne
* @param {number} indexTwo
*
* @returns {void}
*/
swap(indexOne, indexTwo) {
const temp = this.items[indexOne];
this.items[indexOne] = this.items[indexTwo];
this.items[indexTwo] = temp;
}
/**
* Returns the top value of the heap
*
* @method peek
*
* @returns {number}
*/
peek() {
this.isEmpty();
return this.item[0];
}
/**
* Returns the verry first item of the heap and reorders the heap after
*
* @method poll
*
* @returns {number}
*/
async poll() {
this.isEmpty();
// Store item in funcStack
const item = this.items[0];
// Set last item as first
this.items[0] = this.items[this.items.length - 1]
// Remove last item
this.items.pop();
await this.heapifyDown();
return item;
}
/**
* Returns the verry first item of the heap and reorders the heap after
*
* @method add
*
* @param {number} item
*
* @returns {void}
*/
async add(item) {
// Add item to end of the array
this.items.push(item)
// Re-order heap from down to top
await this.heapifyUp();
}
/**
* Re-orders the heap from down to top
*
* @method heapifyUp
*
* @returns {void}
*/
async heapifyUp() {
let index = this.items.length;
let parentIndex;
while (this.hasParent(index) && this.comparePair(this.parent(index), this.items[index])) {
parentIndex = this.getParentIndex();
swap(parentIndex, index);
index = parentIndex;
}
return;
}
/**
* Re-orders the heap from top to down
*
* @method heapifyDown
*
* @returns {void}
*/
async heapifyDown() {
const index = 0;
let smallerChildIndex;
while(this.hasLeftChild(index)) {
smallerChildIndex = this.getLeftChildIndex(index);
if (this.hasRightChild(index) && this.comparePair(this.rightChild(index), this.leftChild(index))) {
smallerChildIndex = this.getRightChildIndex(index);
}
if (this.items[index] < this.items[smallerChildIndex]) {
break;
}
this.swap(index, smallerChildIndex);
index = smallerChildIndex;
}
return;
}
/**
* Returns the left child index by the given parent index of the heap
*
* @method getLeftChildIndex
*
* @param {number} parentIndex
*
* @returns {number}
*/
getLeftChildIndex(parentIndex) {
return 2 * parentIndex + 1;
}
/**
* Returns the right child index by the given parent index of the heap
*
* @method getRightChildIndex
*
* @param {number} parentIndex
*
* @returns {number}
*/
getRightChildIndex(parentIndex) {
return 2 * parentIndex + 2;
}
/**
* Returns the parent index by the given child index of the heap.
*
* Note: Math floor is required to not have invalid decimals as index returned
*
* @method getParentIndex
*
* @param {number} childIndex
*
* @returns {number}
*/
getParentIndex(childIndex) {
return Math.floor((childIndex - 1) / 2);
}
/**
* Returns true if the given index does have a left child
*
* @method hasLeftChild
*
* @param {number} index
*
* @returns {boolean}
*/
hasLeftChild(index) {
return this.getLeftChildIndex(index) < this.items.length;
}
/**
* Returns true if the given index does have a right child
*
* @method hasRightChild
*
* @param {number} index
*
* @returns {boolean}
*/
hasRightChild(index) {
return this.getRightChildIndex(index) < this.items.length;
}
/**
* Returns true if the given index does have a parent node
*
* @method hasParent
*
* @param {number} index
*
* @returns {boolean}
*/
hasParent(index) {
return this.getParentIndex(index) >= 0;
}
/**
* Returns the left child of the given index
*
* @method leftChild
*
* @param {number} index
*
* @returns {number}
*/
leftChild(index) {
return this.items[this.getLeftChildIndex(index)];
}
/**
* Returns the right child of the given index
*
* @method rightChild
*
* @param {number} index
*
* @returns {number}
*/
rightChild(index) {
return this.items[this.getRightChildIndex(index)];
}
/**
* Returns the parent of the given index
*
* @method parent
*
* @param {number} index
*
* @returns {number}
*/
parent(index) {
return this.items[this.getParentIndex(index)];
}
}