优先队列的自定义排序方法

2021-01-21 14:14

阅读:766

标签:code   优先队列   queue   return   style   优先   span   col   str   

struct cmp
{
    bool operator ()(Pair a,Pair b)    //你想要定义的比较函数
    {
        if(a.second-a.first==b.second-b.first)
            return a.first>b.first;
        return a.second-a.firstb.first;
    }
};
priority_queue,cmp>q;

 

优先队列的自定义排序方法

标签:code   优先队列   queue   return   style   优先   span   col   str   

原文地址:https://www.cnblogs.com/ljxdtc666/p/12894918.html

上一篇:拓扑排序

下一篇:python | 关于pip


评论


亲,登录后才可以留言!