PriorityQueue class
Contents
Constructors, destructors, conversion operators
- PriorityQueue(int n, int maxId, bool min)
- Create a priority queue of max size n \param n max size of the queuet \param p external vector representing the priority \param min best element has the smalest p when min is True ans has the biggest when min is false.
- PriorityQueue(const PriorityQueue&) deleted
- PriorityQueue cannot be copied.
Public functions
- auto operator=(const PriorityQueue&) -> PriorityQueue& deleted
- PriorityQueue cannot be copied.