功能是先拍a,若a相等則在其基礎上對b進行排序。
用的algorithm中sort進行的排序。
#include#include #include using namespace std; struct test{ int a; int b; test():a(0),b(0){} test(int x,int y=0):a(x),b(y){} set(int x,int y){a=x;b=y;} }; bool cmp(const test &x,const test &y) { if(x.a != y.a) return x.a