众所周知(我并不知道),C++中结构体想要直接用运算符操作的话,是需要重载运算符的
懒得单独展开了,直接贴个写过的代码吧
1 struct node{ 2 int val; 3 int index; 4 int pre, next; 5 bool operator > (const node that) const{ 6 return this->val > that.val; // 这是在结构体里重载运算符的方法 7 } 8 bool operator < (const node that) const{ 9 return this->val < that.val; 10 } 11 }a[MAXN];
以上来自某代码片段
原文:https://www.cnblogs.com/Foggy-Forest/p/12814816.html