forked from Suryakant-Bharti/Important-Java-Concepts
-
Notifications
You must be signed in to change notification settings - Fork 17
/
IndexedPriorityQueue.kt
196 lines (172 loc) Β· 5.76 KB
/
IndexedPriorityQueue.kt
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
package algo.datastructures
import java.util.NoSuchElementException
// TODO: resize
class IndexedPriorityQueue<T>(size: Int, val comparator: Comparator<T>? = null) : Collection<T> {
/**
* maximum number of elements on PQ
*/
private val maxN: Int = size
/**
* number of elements on PQ
*/
public override var size: Int = 0
private set
/**
* binary heap using 1-based indexing
*/
private val pq: IntArray = IntArray(size + 1)
/**
* inverse of pq - qp[pq[i]] = pq[qp[i]] = i
*/
private val qp: IntArray = IntArray(size + 1, { -1 })
/**
* keys[i] = priority of i
*/
private val keys: Array<T?> = Array<Comparable<T>?>(size + 1, { null }) as Array<T?>
/**
* Associates key with index {@code i}.
*
* @param i an index
* @param key the key to associate with index {@code i}
* @throws IndexOutOfBoundsException unless {@code 0 <= i < maxN}
* @throws IllegalArgumentException if there already is an item associated with index {@code i}
*/
public fun insert(i: Int, key: T) {
if (i < 0 || i >= maxN) throw IndexOutOfBoundsException()
if (contains(i)) throw IllegalArgumentException("index is already in the priority queue")
size++
qp[i] = size
pq[size] = i
keys[i] = key
swim(size)
}
/**
* Decrease the key associated with index `i` to the specified value.
*
* @param i the index of the key to decrease
* @param key decrease the key associated with index `i` to this key
* @throws IndexOutOfBoundsException unless `0 <= i < maxN`
* @throws IllegalArgumentException if `key >=` key associated with index `i`
* @throws NoSuchElementException no key is associated with index `i`
*/
public fun decreaseKey(i: Int, key: T) {
if (i < 0 || i >= maxN) throw IndexOutOfBoundsException()
if (!contains(i)) throw NoSuchElementException("index is not in the priority queue")
if (!greater(keys[i]!!, key))
throw IllegalArgumentException("Calling decreaseKey()" +
"with given argument would not strictly decrease the key")
keys[i] = key
swim(qp[i])
}
/**
* Increase the key associated with index `i` to the specified value.
*
* @param i the index of the key to increase
* @param key increase the key associated with index `i` to this key
* @throws IndexOutOfBoundsException unless `0 <= i < maxN`
* @throws IllegalArgumentException if `key <=` key associated with index `i`
* @throws NoSuchElementException no key is associated with index `i`
*/
public fun increaseKey(i: Int, key: T) {
if (i < 0 || i >= maxN) throw IndexOutOfBoundsException()
if (!contains(i)) throw NoSuchElementException("index is not in the priority queue")
if (!less(keys[i]!!, key))
throw IllegalArgumentException("Calling increaseKey()" +
"with given argument would not strictly increase the key")
keys[i] = key
sink(qp[i])
}
/**
* Returns a minimum key.
*
* @return a minimum key
* @throws NoSuchElementException if this priority queue is empty
*/
fun peek(): Pair<Int, T> {
if (size == 0) throw NoSuchElementException("Priority queue underflow")
return Pair(pq[1], keys[pq[1]]!!)
}
/**
* Removes a minimum key and returns its associated index.
*
* @return an index associated with a minimum key
* @throws NoSuchElementException if this priority queue is empty
*/
fun poll(): Pair<Int, T> {
if (size == 0) throw NoSuchElementException("Priority queue underflow")
val min = pq[1]
val element = keys[min]
exch(1, size--)
sink(1)
assert(min == pq[size + 1])
qp[min] = -1 // delete
keys[min] = null // to help with garbage collection
pq[size + 1] = -1 // not needed
return Pair(min, element!!)
}
private fun less(x: T, y: T): Boolean {
return if (comparator != null) {
comparator.compare(x, y) < 0
} else {
val left = x as Comparable<T>
left < y
}
}
private fun greater(x: T, y: T): Boolean {
return if (comparator != null) {
comparator.compare(x, y) > 0
} else {
val left = x as Comparable<T>
left > y
}
}
private fun greater(i: Int, j: Int): Boolean {
return greater(keys[pq[i]]!!, keys[pq[j]]!!)
}
private fun exch(i: Int, j: Int) {
val swap = pq[i]
pq[i] = pq[j]
pq[j] = swap
qp[pq[i]] = i
qp[pq[j]] = j
}
private fun swim(n: Int) {
var k = n
while (k > 1 && greater(k / 2, k)) {
exch(k, k / 2)
k /= 2
}
}
private fun sink(n: Int) {
var k = n
while (2 * k <= size) {
var j = 2 * k
if (j < size && greater(j, j + 1)) j++
if (!greater(k, j)) break
exch(k, j)
k = j
}
}
public fun contains(i: Int): Boolean {
if (i < 0 || i >= maxN) throw IndexOutOfBoundsException()
return qp[i] != -1
}
override fun isEmpty(): Boolean {
return size == 0
}
override fun contains(element: T): Boolean {
for (obj in this) {
if (obj == element) return true
}
return false
}
override fun containsAll(elements: Collection<T>): Boolean {
for (element in elements) {
if (!contains(element)) return false
}
return true
}
override fun iterator(): Iterator<T> {
return keys.copyOfRange(1, size + 1).map { it!! }.iterator()
}
}