优先队列排序 java_优先队列自定义比较排序(Cpp, Java实现)

本文介绍了如何使用C++和Java实现优先队列,并且自定义比较规则进行排序。在C++中,通过结构体Node重载了大于和小于操作符。而在Java中,使用了lambda表达式以及匿名内部类来实现Comparator接口,以完成自定义排序。示例代码展示了如何将节点按a字段降序,当a相等时按b字段升序排列。
摘要由CSDN通过智能技术生成

Cpp实现:

#include

#include

using namespace std;

struct Node

{

int a, b;

Node() {}

Node(int a, int b) : a(a), b(b) {}

bool operator>(const Node& t) const

{

if (a > t.a) return true;

else if (a < t.a) return false;

else b > t.b;

}

bool operator

{

if (a < t.a) return true;

else if (a > t.a) return false;

else return b < t.b;

}

};

priority_queue, greater> pq;

//priority_queue pq;

int main()

{

pq.push(Node(2, 3));

pq.push(Node(2, 2));

pq.push(Node(1, 1));

// pq.push(Node(1, 1));

// pq.push(Node(2, 2));

// pq.push(Node(2, 3));

while (!pq.empty())

{

printf("%d %d\n", pq.top().

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值