优先队列中运算符重载
Posted rstz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了优先队列中运算符重载相关的知识,希望对你有一定的参考价值。
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;
以上是关于优先队列中运算符重载的主要内容,如果未能解决你的问题,请参考以下文章