3.排序题与sort函数的应用

3.排序题与sort函数的应用 1.相关结构体的定义web struct stu{ char name[10]; //名字 char id[10]; //学号 int score; //分数 int r; //排名 }; 2. sort中cmp函数编写 例如:要求按照分数高低排序,若是相同按照名字从小到大排序。svg bool cmp(stu a,stu b) //a,
相关文章
相关标签/搜索