结构体 vector 排序

#include<iostream> #include<vector> #include<algorithm> using namespace std; struct stu{ string name; int score; stu(string name1,int score1):name(name1),score(score1){ } }; bool cmp(stu a,stu b
相关文章
相关标签/搜索