Answers for "what type off heap is used in priority queue in stl"

C++
4

min heap priority queue c++

#include<queue>
std::priority_queue <int, std::vector<int>, std::greater<int> > minHeap;
Posted by: Guest on May-22-2020

Code answers related to "what type off heap is used in priority queue in stl"

Browse Popular Code Answers by Language