重载运算符

struct node
{
    int a,b;
};
bool operator <(const node &x,const node &y)
{
    return x.a<y.a;
}
priority_queue<node> q;

*注意 const 以及 & 

posted @ 2021-10-21 00:04  T_X蒻  阅读(21)  评论(0编辑  收藏  举报