码迷,mamicode.com
首页 > 其他好文 > 详细

优先队列中运算符重载

时间:2020-02-25 09:46:33      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:style   优先队列   white   opera   ret   nod   end   队列   node   

  1 struct node{
  2 	int a;
  3 	int cost;
  4 	node(int a, int  cost):a(a), cost(cost){}
  5 	friend bool operator < (node n1, node n2){
  6 		return n1.cost > n2.cost;
  7 	}
  8 };
  9 priority_queue<node> q;

优先队列中运算符重载

标签:style   优先队列   white   opera   ret   nod   end   队列   node   

原文地址:https://www.cnblogs.com/rstz/p/12359948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!