摘要: 使用的测试代码: #include<bits/stdc++.h> using namespace std; struct node { int a,b; bool operator < (const node &e) const { return b > e.b; } }; int main() { 阅读全文
posted @ 2022-07-27 20:14 cbmango 阅读(152) 评论(0) 推荐(0)