stable_sort 稳定排序 #include<iostream> #include<string> #include<cstdio> #include<vector> #include<algorithm> using namespace std; typedef struct{ string name; int goal; int num; }student; bool cmp1(student s1,student s2){ // if(s1.goal<s2.goal) return t...