摘要: 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) 推荐(0) 编辑