-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-min-priority-queue.js
267 lines (229 loc) · 6.85 KB
/
index-min-priority-queue.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
const { newArrayOf } = require('../../utils')
const { compare } = require('../../common')
/**
* Generic Minimum Priority Queue implementation with associated indices.
* @memberof module:ADTs
* @see pages: 320, 323, 333, 334.
* @see [edu.princeton.cs.algs4.IndexMinPQ.java]{@link https://algs4.cs.princeton.edu/code/edu/princeton/cs/algs4/IndexMinPQ.java.html}
*/
class IndexMinPQ {
/**
* Creates a PQ of capacity `maxN` with possible indices between `0` an `maxN - 1`.
* @param {number} [maxN] - Maximum fixed size for the Priority Queue.
*/
constructor (maxN) {
/**
* Number of elements on PQ.
* @private
* @type {number}
*/
this._n = 0
/**
* Binary Heap using 1-based indexing.
* @private
* @type {Array}
*/
this._pq = [] // default initialization
/**
* Inverse of `_pq`: `_qp[_pq[i]] = _pq[_qp[i]] = i`.<br>
* `_qp[i]` gives the position of `i` in `_pq[]`, the index `j` such that `_pq[j]` is `i`.
* @private
* @type {Array}
*/
this._qp = [] // default initialization
/**
* The array that holds the keys with priorities.
* @private
* @type {Array}
*/
this._keys = [] // default initialization
// constructor initialization
if (typeof maxN === 'number' && Number.isInteger(maxN) && maxN > 0) {
this._pq = newArrayOf(maxN + 1, undefined)
this._qp = newArrayOf(maxN + 1, -1) // -1 indicates that key is not present
this._keys = newArrayOf(maxN + 1, undefined)
}
Object.seal(this)
}
// Private instance methods
// ==================================================
/**
* Compares if the key at index `i` is greater than the key at index `j`.
* @private
* @param {number} i - The inverse index of the first key.
* @param {number} j - The inverse index of the second key.
* @returns {boolean} If the key at index `i` is greater than the key at index`j`.
*/
_greater (i, j) {
return compare(this._keys[this._pq[i]], this._keys[this._pq[j]]) > 0
}
/**
* Exchanges the indexes `i` and `j` in pq.
* Updates the inverse array `_qp`.
* @private
* @param {number} i - The index of the first key.
* @param {number} j - The index of the second key.
*/
_exch (i, j) {
const inverseI = this._pq[i]
const inverseJ = this._pq[j]
this._pq[i] = inverseJ
this._pq[j] = inverseI
const temp = this._qp[inverseI]
this._qp[inverseI] = this._qp[inverseJ]
this._qp[inverseJ] = temp
}
/**
* @summary Bottom-Up reheapify (min version).
* @description Algorithm to fix the heap order when
* a key becomes **smaller** than its parent.
* @private
* @param {number} k - The index of the key to *swim*.
*/
_swim (k) {
// While the current index 'k' is not the root (k > 1)
// and while the parent node (at k / 2) is greater than
// the current node (at k), exchange both nodes.
while (k > 1 && this._greater(Math.floor(k / 2), k)) {
this._exch(Math.floor(k / 2), k)
k = Math.floor(k / 2)
}
}
/**
* @summary Top-Down reheapify (min version).
* @description Algorithm to fix the heap order when
* a key becomes **greater** than a child.
* @private
* @param {number} k - Index of the key to *sink*.
*/
_sink (k) {
// While 'k' is still having a next child
// that is in bounds with the PQ size (_n) ...
while (2 * k <= this._n) {
// let 'j' be the next left child of 'k' (2 * k)
let j = 2 * k
// if the left child (j) is greater than the right child (j + 1)
// then choose the right child (j++)
if (j < this._n && this._greater(j, j + 1)) {
j++
}
// if parent node (at k) is NOT greater than
// the child node (at j), then we have found
// its final position.
if (!this._greater(k, j)) {
break
}
this._exch(k, j)
k = j
}
}
// Public instance methods
// ==================================================
/**
* Inserts a new key to the PQ and fixes the heap order.
* @param {number} i - The index for the key `k`.
* @param {*} k - The key to be inserted.
*/
insert (i, k) {
this._n++
this._qp[i] = this._n
this._pq[this._n] = i
this._keys[i] = k
this._swim(this._n)
}
/**
* Changes the associated key with index `i` to be the new key `k`.
* @param {number} i - The index that will get the new key.
* @param {*} k - The new key for index `i`.
*/
changeKey (i, k) {
this._keys[i] = k
this._swim(this._qp[i])
this._sink(this._qp[i])
}
/**
* Returns if index `i` is associated with some key.
* @param {number} i - The index to be inspected.
* @returns {boolean} If the index contains an associated key.
*/
contains (i) {
return this._qp[i] !== -1
}
/**
* Removes the key associated with index `i`.
* @param {number} i - The index of the key that should be deleted.
*/
delete (i) {
if (!this.contains(i)) return
const index = this._qp[i]
this._exch(index, this._n--)
this._swim(index)
this._sink(index)
this._pq[this._n + 1] = undefined
this._keys[i] = undefined
this._qp[i] = -1
}
/**
* Returns the minimum key in the PQ.
* @returns {*} The minimum key in the PQ.
*/
minKey () {
return this._keys[this.minIndex()]
}
/**
* Returns the index of the minimum key in the PQ.
* @returns {number} The index of the minimum key in the PQ.
* @throws {ReferenceError} If the PQ is empty.
*/
minIndex () {
if (this.isEmpty()) {
throw new ReferenceError('IndexMinPQ is empty.')
}
return this._pq[1]
}
/**
* Removes the minimum key in the PQ and returns its index.
* @returns {*} The minimum key.
*/
delMin () {
const minIndex = this.minIndex()
// exchange current min with the last inserted
this._exch(1, this._n--)
// the last inserted now is the new min key,
// but it may NOT be the minimum in the PQ,
// so, we gotta find its correct place by using sink
this._sink(1)
// save the inverse index of the last item
const i = this._pq[this._n + 1]
// clean the reverse index of the last item in the PQ
this._pq[this._n + 1] = undefined
// clean the key associated to the inverse index
this._keys[i] = undefined
// update the inverse index that this is key no longer exists
this._qp[i] = -1
return minIndex
}
/**
* Returns if the PQ is empty.
* @returns {boolean} If the PQ is empty.
*/
isEmpty () {
return this._n === 0
}
/**
* Returns the size of the PQ.
* @returns {number} The size of the PQ (total nodes).
*/
size () {
return this._n
}
/**
* Returns the key associated with index `i` in `_pq`.
* @param {number} i - The index of the key.
* @returns {*} The key located at index `i`.
*/
keyOf (i) {
return this._keys[i]
}
}
module.exports = IndexMinPQ