- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C++优先队列的基本使用方法?#includeiostream#includefunctional#includequeueusing namespace std;
struct node{????friend bool operator (node n1, node n2)????{????????return n1.priority n2.priority;//为从大到小排列,为从小打到排列????}????int priority;????int value;};
int main(){????const int len = 5;????int i;????int a[len] = {3,5,9,6,2};????//示例1????priority_queueint qi;//普通的优先级队列,按从大到小排序????for(i = 0; i len; i++)????????qi.push(a[i]);????for(i = 0; i len; i++)????{????????coutqi.top() ;????????qi.pop();????}????coutendl;
????//示例2????priority_queueint, vectorint, greaterint qi2;//从小到大的优先级队列,可将greater改为less,即为从大到小????for(i = 0; i len; i++)????????qi2.push(a[i]);????for(i = 0; i len; i++)????{????????coutqi2.top() ;????????qi2.pop();????}????coutendl;
????//示例3????priority_queuenode qn;//必须要重载运算符????node b[len];????b[0].priority = 6; b[0].value = 1;????b[1].priority = 9; b[1].value = 5;????b[2].priority = 2; b[2].value = 3;????b[3].priority = 8; b[3].value = 2;????b[4].priority = 1; b[4].value = 4;?????for(i = 0; i len; i++)????????qn.push(b[i]);????cout优先级\t值endl;????for(i = 0; i len; i++)????{????????coutqn.top().priority\tqn.top().valueendl;????????qn.pop();????}????return 0;}
对于队列里元素为一个结构体类型,按照某一个属性排序,就需要对比较函数进行重载
小结一下:
1、若是定义值类型对象,如:?
int??main()?{?? ? ???? priority_queuenode qn;
??? node n1;???? n1.a = 9;???? node n2;???? n2.a = 2;???? node n3;???? n3.a = 50;??
??? qn.push(n1);
??? qn.push(n2);
??? qn.push(n3);
???? int? size = qn.size();
???? for ( int? i = 0; i size; i++)???? {???????? cout qn.top().a endl;
? ? ? ? qn.pop();???? }?? ??? ? ?return? 0;
}?则定义优先级的时候,直接在类中写个friend 的操作符重载函数即可:?
class? node?{?public :????? int? a;
??? node(){}???? node( int? x):a(x){}?friend?? bool? operator( const? node ne1, const? node ne2)//参数也可以为引用,值传递???? {????????? if (ne1.a ne2.a)???????? {????????????? return?? true ;???????? }????????? else???????? {????????????? return?? false ;???????? }???? }?};?其中在c++prim
您可能关注的文档
- 第二节_第三节_道德的历史类型.ppt
- 第八章 宫颈癌发展过程.ppt
- 第4篇练习(上).doc
- 第1篇 时域离散随机信号的分析.ppt
- 第5篇 组合体-定稿-2009.ppt
- 《管理学原理》名词解释、简答及论述.doc
- 第九章 汇编语言程序第二次作业.docx
- 扩展Int 13H调用规范讲述.docx
- 第9章 、CPU单多核计算测试.doc
- 电力行业优秀QC成果-减少一体化远动系统故障次数幻灯片.ppt
- 小平方房屋买卖合同(28篇).docx
- 渭华起义馆观后感作文500字五篇.docx
- 自然语言处理NLPTextRNN实现情感分类.docx
- 清明节继承先烈遗志演讲稿700字(24篇).docx
- 语文五年级上册第18课慈母情深部编版.docx
- Unit5Thevalueofmoneywords1单词课件高中人教版(2019)(1).pptx
- 中考英语话题复习之兴趣爱好省公开课金奖全国赛课一等奖微课获奖课件.pptx
- Unit1FestivalsandCelebrationsReadingandthinking课件-人教版高中英语.pptx
- 监狱防爆车采购合同协议.docx
- 电力服务代办合同协议.docx
文档评论(0)