Skip to content

Instantly share code, notes, and snippets.

@Taohid0
Created January 8, 2019 11:03
Show Gist options
  • Save Taohid0/27c3ebe64ecaf3ec4e33c0d9e9038b80 to your computer and use it in GitHub Desktop.
Save Taohid0/27c3ebe64ecaf3ec4e33c0d9e9038b80 to your computer and use it in GitHub Desktop.
c++ proirity_queue
#include <bits/stdc++.h>
using namespace std;
int main()
{
int value;
priority_queue<int>pq;
pq.push(1);
pq.push(2);
pq.push(3);
while(!pq.empty())
{
value = pq.top();
pq.pop();
cout<<value<< " ";
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment