-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathheap.js
418 lines (364 loc) · 8.59 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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/**
* @license MIT
* @copyright 2020 Eyas Ranjous <eyas.ranjous@gmail.com>
*
* @class
*/
class Heap {
/**
* @param {function} compare
* @param {array} [_values]
* @param {number|string|object} [_leaf]
*/
constructor(compare, _values, _leaf) {
if (typeof compare !== 'function') {
throw new Error('Heap constructor expects a compare function');
}
this._compare = compare;
this._nodes = Array.isArray(_values) ? _values : [];
this._leaf = _leaf || null;
}
/**
* Converts the heap to a cloned array without sorting.
* @public
* @returns {Array}
*/
toArray() {
return Array.from(this._nodes);
}
/**
* Checks if a parent has a left child
* @private
*/
_hasLeftChild(parentIndex) {
const leftChildIndex = (parentIndex * 2) + 1;
return leftChildIndex < this.size();
}
/**
* Checks if a parent has a right child
* @private
*/
_hasRightChild(parentIndex) {
const rightChildIndex = (parentIndex * 2) + 2;
return rightChildIndex < this.size();
}
/**
* Compares two nodes
* @private
*/
_compareAt(i, j) {
return this._compare(this._nodes[i], this._nodes[j]);
}
/**
* Swaps two nodes in the heap
* @private
*/
_swap(i, j) {
const temp = this._nodes[i];
this._nodes[i] = this._nodes[j];
this._nodes[j] = temp;
}
/**
* Checks if parent and child should be swapped
* @private
*/
_shouldSwap(parentIndex, childIndex) {
if (parentIndex < 0 || parentIndex >= this.size()) {
return false;
}
if (childIndex < 0 || childIndex >= this.size()) {
return false;
}
return this._compareAt(parentIndex, childIndex) > 0;
}
/**
* Compares children of a parent
* @private
*/
_compareChildrenOf(parentIndex) {
if (!this._hasLeftChild(parentIndex) && !this._hasRightChild(parentIndex)) {
return -1;
}
const leftChildIndex = (parentIndex * 2) + 1;
const rightChildIndex = (parentIndex * 2) + 2;
if (!this._hasLeftChild(parentIndex)) {
return rightChildIndex;
}
if (!this._hasRightChild(parentIndex)) {
return leftChildIndex;
}
const compare = this._compareAt(leftChildIndex, rightChildIndex);
return compare > 0 ? rightChildIndex : leftChildIndex;
}
/**
* Compares two children before a position
* @private
*/
_compareChildrenBefore(index, leftChildIndex, rightChildIndex) {
const compare = this._compareAt(rightChildIndex, leftChildIndex);
if (compare <= 0 && rightChildIndex < index) {
return rightChildIndex;
}
return leftChildIndex;
}
/**
* Recursively bubbles up a node if it's in a wrong position
* @private
*/
_heapifyUp(startIndex) {
let childIndex = startIndex;
let parentIndex = Math.floor((childIndex - 1) / 2);
while (this._shouldSwap(parentIndex, childIndex)) {
this._swap(parentIndex, childIndex);
childIndex = parentIndex;
parentIndex = Math.floor((childIndex - 1) / 2);
}
}
/**
* Recursively bubbles down a node if it's in a wrong position
* @private
*/
_heapifyDown(startIndex) {
let parentIndex = startIndex;
let childIndex = this._compareChildrenOf(parentIndex);
while (this._shouldSwap(parentIndex, childIndex)) {
this._swap(parentIndex, childIndex);
parentIndex = childIndex;
childIndex = this._compareChildrenOf(parentIndex);
}
}
/**
* Recursively bubbles down a node before a given index
* @private
*/
_heapifyDownUntil(index) {
let parentIndex = 0;
let leftChildIndex = 1;
let rightChildIndex = 2;
let childIndex;
while (leftChildIndex < index) {
childIndex = this._compareChildrenBefore(
index,
leftChildIndex,
rightChildIndex
);
if (this._shouldSwap(parentIndex, childIndex)) {
this._swap(parentIndex, childIndex);
}
parentIndex = childIndex;
leftChildIndex = (parentIndex * 2) + 1;
rightChildIndex = (parentIndex * 2) + 2;
}
}
/**
* Inserts a new value into the heap
* @public
* @param {number|string|object} value
* @returns {Heap}
*/
insert(value) {
this._nodes.push(value);
this._heapifyUp(this.size() - 1);
if (this._leaf === null || this._compare(value, this._leaf) > 0) {
this._leaf = value;
}
return this;
}
/**
* Inserts a new value into the heap
* @public
* @param {number|string|object} value
* @returns {Heap}
*/
push(value) {
return this.insert(value);
}
/**
* Removes and returns the root node in the heap
* @public
* @returns {number|string|object}
*/
extractRoot() {
if (this.isEmpty()) {
return null;
}
const root = this.root();
this._nodes[0] = this._nodes[this.size() - 1];
this._nodes.pop();
this._heapifyDown(0);
if (root === this._leaf) {
this._leaf = null;
}
return root;
}
/**
* Removes and returns the root node in the heap
* @public
* @returns {number|string|object}
*/
pop() {
return this.extractRoot();
}
/**
* Applies heap sort and return the values sorted by priority
* @public
* @returns {array}
*/
sort() {
for (let i = this.size() - 1; i > 0; i -= 1) {
this._swap(0, i);
this._heapifyDownUntil(i);
}
return this._nodes;
}
/**
* Fixes node positions in the heap
* @public
* @returns {Heap}
*/
fix() {
// fix node positions
for (let i = Math.floor(this.size() / 2) - 1; i >= 0; i -= 1) {
this._heapifyDown(i);
}
// fix leaf value
for (let i = Math.floor(this.size() / 2); i < this.size(); i += 1) {
const value = this._nodes[i];
if (this._leaf === null || this._compare(value, this._leaf) > 0) {
this._leaf = value;
}
}
return this;
}
/**
* Verifies that all heap nodes are in the right position
* @public
* @returns {boolean}
*/
isValid() {
const isValidRecursive = (parentIndex) => {
let isValidLeft = true;
let isValidRight = true;
if (this._hasLeftChild(parentIndex)) {
const leftChildIndex = (parentIndex * 2) + 1;
if (this._compareAt(parentIndex, leftChildIndex) > 0) {
return false;
}
isValidLeft = isValidRecursive(leftChildIndex);
}
if (this._hasRightChild(parentIndex)) {
const rightChildIndex = (parentIndex * 2) + 2;
if (this._compareAt(parentIndex, rightChildIndex) > 0) {
return false;
}
isValidRight = isValidRecursive(rightChildIndex);
}
return isValidLeft && isValidRight;
};
return isValidRecursive(0);
}
/**
* Returns a shallow copy of the heap
* @public
* @returns {Heap}
*/
clone() {
return new Heap(this._compare, this._nodes.slice(), this._leaf);
}
/**
* Returns the root node in the heap
* @public
* @returns {number|string|object}
*/
root() {
if (this.isEmpty()) {
return null;
}
return this._nodes[0];
}
/**
* Returns the root node in the heap
* @public
* @returns {number|string|object}
*/
top() {
return this.root();
}
/**
* Returns a leaf node in the heap
* @public
* @returns {number|string|object}
*/
leaf() {
return this._leaf;
}
/**
* Returns the number of nodes in the heap
* @public
* @returns {number}
*/
size() {
return this._nodes.length;
}
/**
* Checks if the heap is empty
* @public
* @returns {boolean}
*/
isEmpty() {
return this.size() === 0;
}
/**
* Clears the heap
* @public
*/
clear() {
this._nodes = [];
this._leaf = null;
}
/**
* Implements an iterable on the heap
* @public
*/
[Symbol.iterator]() {
let size = this.size();
return {
next: () => {
size -= 1;
return {
value: this.pop(),
done: size === -1
};
}
};
}
/**
* Builds a heap from a array of values
* @public
* @static
* @param {array} values
* @param {function} compare
* @returns {Heap}
*/
static heapify(values, compare) {
if (!Array.isArray(values)) {
throw new Error('Heap.heapify expects an array of values');
}
if (typeof compare !== 'function') {
throw new Error('Heap.heapify expects a compare function');
}
return new Heap(compare, values).fix();
}
/**
* Checks if a list of values is a valid heap
* @public
* @static
* @param {array} values
* @param {function} compare
* @returns {boolean}
*/
static isHeapified(values, compare) {
return new Heap(compare, values).isValid();
}
}
exports.Heap = Heap;