解题思路:直接使用sort() , 主要在写比较函数cmp ,这个函数有套路
注意事项:
参考代码:
#include <bits/stdc++.h>
using namespace std ;
struct STU {
char name[105] ;
int age ;
int great ;
};
bool cmp(STU a, STU b) { //结构体排序方法
if (a.great != b.great ) {
return a.great < b.great ;
} else if (strcmp(a.name, b.name) != 0) {
return strcmp(a.name , b.name ) < 0 ;
} else {
return a.age < b.age ;
}
}
STU stu[1005] ; //最好都定义为全局
int main() {
int N ;
while(cin >> N) {
for (int i = 0; i < N; i++) {
cin >> stu[i].name >> stu[i].age >> stu[i].great ;
}
sort(stu, stu + N, cmp) ;
for (int i = 0; i < N; i++) {
cout << stu[i].name << " " << stu[i].age << " " << stu[i].great << endl ;
}
}
return 0 ;
}
0.0分
10 人评分