c语言用结构体指针数组冒泡排序学生成绩
时间: 2023-08-07 11:18:40 浏览: 178
C语言利用结构体数组实现学生成绩管理系统
5星 · 资源好评率100%
好的,我可以帮你解答这个问题。
首先,我们需要定义一个结构体来存储学生信息和成绩,例如:
```c
struct student {
char name[20];
double score;
};
```
然后,我们可以定义一个结构体指针数组来存储多个学生的信息和成绩:
```c
struct student *students[100];
```
接下来,我们可以使用冒泡排序对学生的成绩进行排序。排序的过程中,我们需要比较学生的成绩大小,并交换他们之间的位置。
完整的代码如下:
```c
#include <stdio.h>
#include <string.h>
struct student {
char name[20];
double score;
};
void bubble_sort(struct student **students, int n)
{
int i, j;
struct student *temp;
for (i = 0; i < n - 1; i++) {
for (j = 0; j < n - i - 1; j++) {
if (students[j]->score < students[j + 1]->score) {
temp = students[j];
students[j] = students[j + 1];
students[j + 1] = temp;
}
}
}
}
int main()
{
int n, i;
struct student students[100];
struct student *ptr[100];
printf("Enter the number of students: ");
scanf("%d", &n);
for (i = 0; i < n; i++) {
printf("Enter the name and score of student %d: ", i + 1);
scanf("%s %lf", students[i].name, &students[i].score);
ptr[i] = &students[i];
}
bubble_sort(ptr, n);
printf("\nSorted list of students:\n");
for (i = 0; i < n; i++) {
printf("%s\t%.2lf\n", ptr[i]->name, ptr[i]->score);
}
return 0;
}
```
在这个程序中,我们首先输入学生的信息和成绩,并将每个学生的指针存储在一个指针数组中。然后,我们调用 `bubble_sort` 函数对学生的成绩进行排序,并输出排序后的结果。
希望这个答案能够帮到你。如果你有任何问题,可以随时问我。
阅读全文