What is stored in Priority Queue

It stores a set of objects (pointers), which point to nodes with a field key.

На чём её можно построить:

Operations

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.

Реализация на двоичной куче (min/max-heap)

Operations realization

insert(x, key), max() and extractMax() are the same as in max-heap.

increaseKey

void increaseKey(index, newKey) {
	if (arr[index]->key > newKey) {
		return; 
	}
	
	arr[index]->key = newKey; 
	siftUp(index); 
}

Complexity increaseKey — $O(\log{n})$