九度 oj 1172,,107 优先队列的使用 (未理解优先队列)

http://ac.jobdu.com/problem.php?pid=1107

http://ac.jobdu.com/problem.php?pid=1172

代码差不多:

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <math.h>
#include <stack>
#include <queue>
#define ISYEAP(x) x%100!=0 && x%4==0 || x%400==0 ? 1:0

using namespace std;
priority_queue<int,vector<int>,greater<int> >  Q;
int thePath;
void input(int num){
    int temp;
   for(int i=0;i<num;i++){
       cin>>temp;
       Q.push(temp);
   }

}
void haffman(int len){
   int thefirst;
   int thesecond;
   thePath=0;
   while(1){
       if(Q.size()==1)
       {
    //       thePath+=Q.top();
           Q.pop();
           break;
       }
       thefirst=Q.top();
       Q.pop();
       thesecond=Q.top();
       Q.pop();
       thePath+=thefirst+thesecond;
 //      cout<<"thefirst="<<thefirst<<endl;
 //      cout<<"thesecond="<<thesecond<<endl;
 //      cout<<"thePath="<<thePath<<endl;
       Q.push(thefirst+thesecond);
   }
   cout<<thePath<<endl;
 //  Q.pop();
}
int main(){
  int n;
  while(scanf("%d",&n)!=EOF){
      if(n==0){
        return 0;
      }
    input(n);
    haffman(n);
  }
  return 0;
}

priority_queue<int > Q;//最大堆

priority_queue<int,vector<int>,greater<int> >//最小堆,且最后两个>>必须分开写> >


优先队列:

其他人写的博客:

http://www.cnblogs.com/flyoung2008/articles/2136485.html

http://www.cnblogs.com/void/archive/2012/02/01/2335224.html






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值