class PriorityQueue{ public: insert(P priority, V value); V remove(); P getNextPriority(); V getNextValue(); };