-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
fibonacci-heap.js
321 lines (270 loc) · 6.29 KB
/
fibonacci-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
/* eslint no-constant-condition: 0 */
/**
* Mnemonist Fibonacci Heap
* =========================
*
* Fibonacci heap implementation.
*/
var comparators = require('./utils/comparators.js'),
forEach = require('obliterator/foreach');
var DEFAULT_COMPARATOR = comparators.DEFAULT_COMPARATOR,
reverseComparator = comparators.reverseComparator;
/**
* Fibonacci Heap.
*
* @constructor
*/
function FibonacciHeap(comparator) {
this.clear();
this.comparator = comparator || DEFAULT_COMPARATOR;
if (typeof this.comparator !== 'function')
throw new Error('mnemonist/FibonacciHeap.constructor: given comparator should be a function.');
}
/**
* Method used to clear the heap.
*
* @return {undefined}
*/
FibonacciHeap.prototype.clear = function() {
// Properties
this.root = null;
this.min = null;
this.size = 0;
};
/**
* Function used to create a node.
*
* @param {any} item - Target item.
* @return {object}
*/
function createNode(item) {
return {
item: item,
degree: 0
};
}
/**
* Function used to merge the given node with the root list.
*
* @param {FibonacciHeap} heap - Target heap.
* @param {Node} node - Target node.
*/
function mergeWithRoot(heap, node) {
if (!heap.root) {
heap.root = node;
}
else {
node.right = heap.root.right;
node.left = heap.root;
heap.root.right.left = node;
heap.root.right = node;
}
}
/**
* Method used to push an item into the heap.
*
* @param {any} item - Item to push.
* @return {number}
*/
FibonacciHeap.prototype.push = function(item) {
var node = createNode(item);
node.left = node;
node.right = node;
mergeWithRoot(this, node);
if (!this.min || this.comparator(node.item, this.min.item) <= 0)
this.min = node;
return ++this.size;
};
/**
* Method used to get the "first" item of the heap.
*
* @return {any}
*/
FibonacciHeap.prototype.peek = function() {
return this.min ? this.min.item : undefined;
};
/**
* Function used to consume the given linked list.
*
* @param {Node} head - Head node.
* @param {array}
*/
function consumeLinkedList(head) {
var nodes = [],
node = head,
flag = false;
while (true) {
if (node === head && flag)
break;
else if (node === head)
flag = true;
nodes.push(node);
node = node.right;
}
return nodes;
}
/**
* Function used to remove the target node from the root list.
*
* @param {FibonacciHeap} heap - Target heap.
* @param {Node} node - Target node.
*/
function removeFromRoot(heap, node) {
if (heap.root === node)
heap.root = node.right;
node.left.right = node.right;
node.right.left = node.left;
}
/**
* Function used to merge the given node with the child list of a root node.
*
* @param {Node} parent - Parent node.
* @param {Node} node - Target node.
*/
function mergeWithChild(parent, node) {
if (!parent.child) {
parent.child = node;
}
else {
node.right = parent.child.right;
node.left = parent.child;
parent.child.right.left = node;
parent.child.right = node;
}
}
/**
* Function used to link one node to another in the root list.
*
* @param {FibonacciHeap} heap - Target heap.
* @param {Node} y - Y node.
* @param {Node} x - X node.
*/
function link(heap, y, x) {
removeFromRoot(heap, y);
y.left = y;
y.right = y;
mergeWithChild(x, y);
x.degree++;
y.parent = x;
}
/**
* Function used to consolidate the heap.
*
* @param {FibonacciHeap} heap - Target heap.
*/
function consolidate(heap) {
var A = new Array(heap.size),
nodes = consumeLinkedList(heap.root),
i, l, x, y, d, t;
for (i = 0, l = nodes.length; i < l; i++) {
x = nodes[i];
d = x.degree;
while (A[d]) {
y = A[d];
if (heap.comparator(x.item, y.item) > 0) {
t = x;
x = y;
y = t;
}
link(heap, y, x);
A[d] = null;
d++;
}
A[d] = x;
}
for (i = 0; i < heap.size; i++) {
if (A[i] && heap.comparator(A[i].item, heap.min.item) <= 0)
heap.min = A[i];
}
}
/**
* Method used to retrieve & remove the "first" item of the heap.
*
* @return {any}
*/
FibonacciHeap.prototype.pop = function() {
if (!this.size)
return undefined;
var z = this.min;
if (z.child) {
var nodes = consumeLinkedList(z.child),
node,
i,
l;
for (i = 0, l = nodes.length; i < l; i++) {
node = nodes[i];
mergeWithRoot(this, node);
delete node.parent;
}
}
removeFromRoot(this, z);
if (z === z.right) {
this.min = null;
this.root = null;
}
else {
this.min = z.right;
consolidate(this);
}
this.size--;
return z.item;
};
/**
* Convenience known methods.
*/
FibonacciHeap.prototype.inspect = function() {
var proxy = {
size: this.size
};
if (this.min && 'item' in this.min)
proxy.top = this.min.item;
// Trick so that node displays the name of the constructor
Object.defineProperty(proxy, 'constructor', {
value: FibonacciHeap,
enumerable: false
});
return proxy;
};
if (typeof Symbol !== 'undefined')
FibonacciHeap.prototype[Symbol.for('nodejs.util.inspect.custom')] = FibonacciHeap.prototype.inspect;
/**
* Fibonacci Maximum Heap.
*
* @constructor
*/
function MaxFibonacciHeap(comparator) {
this.clear();
this.comparator = comparator || DEFAULT_COMPARATOR;
if (typeof this.comparator !== 'function')
throw new Error('mnemonist/FibonacciHeap.constructor: given comparator should be a function.');
this.comparator = reverseComparator(this.comparator);
}
MaxFibonacciHeap.prototype = FibonacciHeap.prototype;
/**
* Static @.from function taking an arbitrary iterable & converting it into
* a heap.
*
* @param {Iterable} iterable - Target iterable.
* @param {function} comparator - Custom comparator function.
* @return {FibonacciHeap}
*/
FibonacciHeap.from = function(iterable, comparator) {
var heap = new FibonacciHeap(comparator);
forEach(iterable, function(value) {
heap.push(value);
});
return heap;
};
MaxFibonacciHeap.from = function(iterable, comparator) {
var heap = new MaxFibonacciHeap(comparator);
forEach(iterable, function(value) {
heap.push(value);
});
return heap;
};
/**
* Exporting.
*/
FibonacciHeap.MinFibonacciHeap = FibonacciHeap;
FibonacciHeap.MaxFibonacciHeap = MaxFibonacciHeap;
module.exports = FibonacciHeap;