c语言用结构体指针数组冒泡排序学生成绩
时间: 2023-08-07 18:17:08 浏览: 174
好的,我会为您解答。首先,我们需要定义一个结构体,用于存储学生的姓名和成绩,如下所示:
```c
struct student {
char name[20];
int score;
};
```
然后,我们可以创建一个结构体指针数组,用于存储多个学生的信息,如下所示:
```c
struct student *stu[5];
```
接下来,我们可以使用循环语句来输入每个学生的姓名和成绩,如下所示:
```c
for (int i = 0; i < 5; i++) {
stu[i] = (struct student*)malloc(sizeof(struct student)); // 动态分配内存
printf("请输入第%d个学生的姓名和成绩:", i+1);
scanf("%s %d", stu[i]->name, &stu[i]->score);
}
```
然后,我们可以使用冒泡排序算法,按照学生的成绩从高到低排序,如下所示:
```c
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4-i; j++) {
if (stu[j]->score < stu[j+1]->score) {
struct student *temp = stu[j];
stu[j] = stu[j+1];
stu[j+1] = temp;
}
}
}
```
最后,我们可以使用循环语句输出已排序的学生信息,如下所示:
```c
printf("按成绩从高到低排序结果如下:\n");
for (int i = 0; i < 5; i++) {
printf("姓名:%s,成绩:%d\n", stu[i]->name, stu[i]->score);
}
```
完整代码如下所示:
```c
#include <stdio.h>
#include <stdlib.h>
struct student {
char name[20];
int score;
};
int main() {
struct student *stu[5];
for (int i = 0; i < 5; i++) {
stu[i] = (struct student*)malloc(sizeof(struct student));
printf("请输入第%d个学生的姓名和成绩:", i+1);
scanf("%s %d", stu[i]->name, &stu[i]->score);
}
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4-i; j++) {
if (stu[j]->score < stu[j+1]->score) {
struct student *temp = stu[j];
stu[j] = stu[j+1];
stu[j+1] = temp;
}
}
}
printf("按成绩从高到低排序结果如下:\n");
for (int i = 0; i < 5; i++) {
printf("姓名:%s,成绩:%d\n", stu[i]->name, stu[i]->score);
}
return 0;
}
```
阅读全文