Search code examples
c++stlpriority-queue

How can I create Min stl priority_queue?


The default stl priority queue is a Max one (Top function returns the largest element).

Say, for simplicity, that it is a priority queue of int values.


Solution

  • Use std::greater as the comparison function:

    std::priority_queue<int, std::vector<int>, std::greater<int> > my_min_heap;