初涉“优先队列”

Posted 村雨sup

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初涉“优先队列”相关的知识,希望对你有一定的参考价值。

大概意思是将最小的两个pop出队列后相加push入队,类似哈夫曼树算法最后求和。

#include<bits/stdc++.h>
using namespace std;

struct cmp1{
    bool operator ()(int &a,int &b){
        return a>b;//最小值优先
    }
};

int main()
{
    priority_queue<int,vector<int>,cmp1>que1;//最小值优先

    int n;
    cin >> n;
    int a[n];
    for(int i=0;i < n;i++)
    {
        cin >> a[i];
        que1.push(a[i]);
    }

    int sum = 0;
    while(!que1.empty())
    {
        int x = que1.top();
        que1.pop();
        int y = que1.top();
        que1.pop();
        int hehe = x + y;
        sum += hehe;
        if(!que1.empty())
        {
            que1.push(hehe);
        }
        else break;
    }

    cout << sum << endl;

    return 0;
}

默认是最大值优先度最高,这里对操作符 “<” 进行了重载。

以上是关于初涉“优先队列”的主要内容,如果未能解决你的问题,请参考以下文章

# Java 常用代码片段

poj 3253 初涉二叉堆 模板题

线性表--08---优先队列

优先队列

优先队列实现dijkstra算法C++代码

优先队列代码实现