题解 | 哈夫曼树

哈夫曼树

https://www.nowcoder.com/practice/162753046d5f47c7aac01a5b2fcda155

#include <stdio.h>
#include <queue>
using namespace std;

int main() {
    priority_queue<int> pqueue;
    int n;
    scanf("%d", &n);
    for (int i = 0; i < n; i++) {
        int leaf;
        scanf("%d", &leaf);
        pqueue.push(-1 * leaf);
    }
    int wpl = 0;
    while (pqueue.size() >= 2) {
        int leaf1 = pqueue.top();
        pqueue.pop();
        int leaf2 = pqueue.top();
        pqueue.pop();
        wpl = leaf2 + leaf1 + wpl;
        pqueue.push(leaf1 + leaf2);
    }
    printf("%d\n", -1 * wpl);
}

#OPPO求职进展汇总#
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务