优先队列
#include <bits/stdc++.h>
using namespace std;
const int maxn=10001;
int main()
{
priority_queue<int>p;
p.push(3);
p.push(5);
p.push(1);
while(!p.empty())
{
printf("%d\n",p.top());
p.pop();
}
return 0;
}
/*
5
3
1
*/