P1177 【模板】快速排序 优先队列
作者:互联网
#include<bits/stdc++.h>
using namespace std;
int main()
{
priority_queue<int,vector<int>,greater<int> > q;
int n;
cin>>n;
for (int i=1;i<=n;i++)
{
int x;
cin>>x;
q.push(x);
}
while(!q.empty())
{
cout<<q.top()<<" ";
q.pop();
}
return 0;
}
标签:std,队列,cin,P1177,int,排序,模板 来源: https://www.cnblogs.com/smghj/p/15959644.html