必威体育Betway必威体育官网
当前位置:首页 > IT技术

优先队列

时间:2019-06-28 01:42:09来源:IT技术作者:seo实验室小编阅读:55次「手机版」
 

优先队列

#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
*/

相关阅读

分享到:

栏目导航

推荐阅读

热门阅读