It stores a set of objects (pointers), which point to nodes with a field key.
На обычном массиве;
На min/max-куче (т.е. двоичной куче)
На d-ичной куче (d-ary heap)
На Фиббоначиевой куче
Algorithms - Dasgupta, C. H. Papadimitriou, and U. V. Vazirani (2006)
Max Priority Queue is built on the Max Heap. It supports these operations:
As for the Min Priority Queue, it supports insert, min, extractMin and decreaseKey operations.
insert(x, key), max() and extractMax() are the same as in max-heap.
void increaseKey(index, newKey) {
if (arr[index]->key > newKey) {
return;
}
arr[index]->key = newKey;
siftUp(index);
}
Complexity increaseKey — $O(\log{n})$