struct node{ mutable int a,b,c; bool operator<(const node &B)const{ if(a==B.a){ return b>B.b; } return a>B.a; } }w[100010]; bool cmp(node a,node b){ return a.b<b.b; }
时间: 2023-03-10 22:01:56 浏览: 152
&n2) const{ return a<n2.a; } };我能理解这段代码,它定义了一个struct节点,其中包含三个可变int类型的变量a,b,c,还定义了一个比较函数,用于比较两个struct节点的变量a的大小。
阅读全文