如题,最后剩15分钟写的第二题,调试的时候提示编译错误,看提示信息应该是在algorithm.h的sort函数比较时报的错,求大佬帮忙看看。 #include <iostream> #include <cstdio> #include <vector> #include <algorithm> using namespace std; typedef struct Node { int a, b; bool operator <(struct Node n) { if (n.b != b) return b &...