C++ 实现优先队列的简单实例
C++ 实现优先队列的简单实例
优先队列类模版实现:
BuildMaxHeap.h头文件:
#include<iostream> using namespace std; #define Left(i) i*2+1 #define Right(i) i*2+2 #define Parent(i) (i-1)/2 void Max_Heapify(int a[],int length,int i) { int left,right; left=Left(i); right=Right(i); int num=i; if(left<length&&a[left]>a[i]) { num=left; } //此处逻辑判断出错,开始为else if,发现不能正确排序,改为else之后正确 if(right<length&&a[right]>a[num]) { num=right; } if(num!=i) { int temp; temp=a[i]; a[i]=a[num]; a[num]=temp; Max_Heapify(a,length,num); } } //此处添加利用循环方式代替递归Max_Heapify的函数,该函数可以替代Max_Heapify //在某些情况下能取得更好 的效果 void Max_Heapify1(int a[],int length,int i) { int left,right,num=i,largest=i; left=Left(i); right=Right(i); while(1) { if(a[left]>a[num]&&left<length) { largest=left; } //此处逻辑判断出错,开始为else if,发现不能正确排序,改为else之后正确 if(a[right]>a[largest]&&right<length) { largest=right; } if(num!=largest) { int temp; temp=a[num]; a[num]=a[largest]; a[largest]=temp; num=largest; left=Left(num); right=Right(num); } else { break; } } } void Build_Max_Heap(int a[],int length ) { int i; for(i=(length-1)/2;i>=0;i--) { Max_Heapify1(a,length,i); } } void Heap_Sort(int a[],int length) { Build_Max_Heap(a,length); int i; int temp; for(i=length-1;i>=1;i--) { temp=a[i]; a[i]=a[0]; a[0]=temp; length-=1; Max_Heapify1(a,length,0); } }
PriorQUeue.h
#include<iostream> #include "BuileMaxHeap.h" using namespace std; #define MAX 100 template <typename type>class PriorQueue { private: int length; type a[MAX]; public: PriorQueue () { int i; length=0; for(i=0;i<MAX;i++) { a[i]=0; } } ~PriorQueue() { } void BuildMaxHeapQueue(); void Init(type b[],int len); type Maxnum(); bool DeleteMax(); void IncreaseKey(int i,type key); void Insert(type key); void Print(); void Sort(); }; template<typename type>void PriorQueue<type>::Init(type b[],int len) { int i; this->length=len; if(len<=0) { cout<<"Init failed !"<<endl; } for(i=0;i<len;i++) { a[i]=b[i]; } BuildMaxHeapQueue(); } template<typename type>void PriorQueue<type>::BuildMaxHeapQueue() { Build_Max_Heap(a,length); } template<typename type>type PriorQueue<type>::Maxnum() { if(length<=0) { cout<<"the queue is empty!"<<endl; return -1; } return a[0]; } template<typename type>bool PriorQueue<type>::DeleteMax() { if(length<=0) { cout<<"the queue is empty!"<<endl; return 0; } a[0]=a[length-1]; length-=1; Max_Heapify1(a,length,0); return 1; } template<typename type>void PriorQueue<type>::IncreaseKey(int i,type key) { int num=i; if(key<a[num]) { cout<<"key is error!"<<endl; return ; } a[num]=key; while(num>0&&a[Parent(num)]<a[num]) { type temp; temp=a[num]; a[num]=a[Parent(num)]; a[Parent(num)]=temp; num=Parent(num); } } template<typename type>void PriorQueue<type>::Insert(type key) { if(length>=MAX) { cout<<"the queue is full can't add more!"<<endl; return ; } length+=1; a[length-1]=key; IncreaseKey(length-1,key); } template<typename type>void PriorQueue<type>::Print() { int i; for(i=0;i<length;i++) { cout<<a[i]<<" "; } cout<<endl; } template<typename type>void PriorQueue<type>::Sort() { Heap_Sort(a,length); }
main.cpp
#include"PriorQueue.h" #include<iostream> using namespace std; int main() { PriorQueue<int> node; int b[10]={4,1,3,2,16,9,10,14,8,7}; node.Init(b,10); int i; node.Print(); cout<<endl; cout<<node.Maxnum()<<endl; node.DeleteMax(); node.Print(); node.Insert(232); node.Sort(); node.Print(); return 0; }
以上就是数据结构优先队列的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
上一篇:C++中stack、queue、vector的用法详解
栏 目:C语言
下一篇:java 出现NullPointerException的原因及解决办法
本文标题:C++ 实现优先队列的简单实例
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/1213.html
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10数据结构课程设计-用栈实现表达式求值的方法详解
- 01-10使用OpenGL实现3D立体显示的程序代码
- 01-10深入理解C++中常见的关键字含义
- 01-10求斐波那契(Fibonacci)数列通项的七种实现方法
- 01-10C语言 解决不用+、-、&#215;、&#247;数字运算符做加法
- 01-10使用C++实现全排列算法的方法详解
- 01-10c++中inline的用法分析
- 01-10用C++实现DBSCAN聚类算法
- 01-10深入全排列算法及其实现方法
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-11ajax实现页面的局部加载
- 04-02jquery与jsp,用jquery
- 01-10SublimeText编译C开发环境设置
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10C#中split用法实例总结
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10delphi制作wav文件的方法