|
|
|
@ -0,0 +1,62 @@
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h> // 包含了 qsort 函数所需的头文件
|
|
|
|
|
|
|
|
|
|
// 学生信息的结构体
|
|
|
|
|
struct Student {
|
|
|
|
|
int student_id;
|
|
|
|
|
int class_id;
|
|
|
|
|
float score1;
|
|
|
|
|
float score2;
|
|
|
|
|
float score3;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 比较函数,用于排序
|
|
|
|
|
int compareStudents(const void *a, const void *b) {
|
|
|
|
|
struct Student *student1 = (struct Student *)a;
|
|
|
|
|
struct Student *student2 = (struct Student *)b;
|
|
|
|
|
|
|
|
|
|
if (student1->class_id != student2->class_id) {
|
|
|
|
|
return student1->class_id - student2->class_id;
|
|
|
|
|
} else {
|
|
|
|
|
float total_score1 = student1->score1 + student1->score2 + student1->score3;
|
|
|
|
|
float total_score2 = student2->score1 + student2->score2 + student2->score3;
|
|
|
|
|
return total_score2 - total_score1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
struct Student students[100];
|
|
|
|
|
int num_students = 3; // 初始有3个学生信息
|
|
|
|
|
|
|
|
|
|
// 初始化已有学生信息
|
|
|
|
|
students[0] = (struct Student){10001, 11, 99.5, 88.5, 89.5};
|
|
|
|
|
students[1] = (struct Student){10002, 12, 77.9, 56.5, 87.5};
|
|
|
|
|
students[2] = (struct Student){10003, 11, 92.5, 99.0, 60.5};
|
|
|
|
|
|
|
|
|
|
// 对已有学生信息进行排序
|
|
|
|
|
qsort(students, num_students, sizeof(struct Student), compareStudents);
|
|
|
|
|
|
|
|
|
|
// 输入新学生信息
|
|
|
|
|
struct Student new_student;
|
|
|
|
|
printf("输入新学生信息(学号 班级 成绩1 成绩2 成绩3):");
|
|
|
|
|
scanf("%d %d %f %f %f", &new_student.student_id, &new_student.class_id, &new_student.score1, &new_student.score2, &new_student.score3);
|
|
|
|
|
|
|
|
|
|
// 插入新学生信息
|
|
|
|
|
students[num_students] = new_student;
|
|
|
|
|
num_students++;
|
|
|
|
|
|
|
|
|
|
// 对新数据进行排序
|
|
|
|
|
qsort(students, num_students, sizeof(struct Student), compareStudents);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < num_students; i++) {
|
|
|
|
|
printf("%d %d %.1f %.1f %.1f", students[i].student_id, students[i].class_id, students[i].score1, students[i].score2, students[i].score3);
|
|
|
|
|
if (i == num_students - 2) {
|
|
|
|
|
printf(" inserted\n");
|
|
|
|
|
} else {
|
|
|
|
|
printf("\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|