构造结构体链表,结构体内容包括学号姓名和成绩c语言源码
时间: 2023-09-12 18:01:11 浏览: 115
要构造结构体链表,首先需要定义结构体的内容,包括学号、姓名和成绩。
```c
#include <stdio.h>
#include <stdlib.h>
// 定义结构体
typedef struct student {
int id;
char name[20];
int score;
struct student* next;
} Student;
int main() {
int n;
printf("请输入学生人数: ");
scanf("%d", &n);
Student* head = NULL;
Student* tail = NULL;
// 输入学生信息并构造链表
for (int i = 0; i < n; i++) {
printf("\n请输入第%d个学生的学号: ", i+1);
int id;
scanf("%d", &id);
printf("请输入姓名: ");
char name[20];
scanf("%s", name);
printf("请输入成绩: ");
int score;
scanf("%d", &score);
// 创建新的学生结点
Student* newStudent = (Student*)malloc(sizeof(Student));
newStudent->id = id;
strcpy(newStudent->name, name);
newStudent->score = score;
newStudent->next = NULL;
// 将新的学生结点加入链表
if (head == NULL) {
head = newStudent;
tail = newStudent;
} else {
tail->next = newStudent;
tail = tail->next;
}
}
// 遍历链表并打印学生信息
printf("\n学生信息如下:\n");
Student* current = head;
while (current != NULL) {
printf("学号: %d\n", current->id);
printf("姓名: %s\n", current->name);
printf("成绩: %d\n", current->score);
printf("\n");
current = current->next;
}
// 释放链表内存
while (head != NULL) {
Student* temp = head;
head = head->next;
free(temp);
}
return 0;
}
```
以上是一个通过输入学生信息构造结构体链表的程序。首先输入学生人数,然后按照提示输入每个学生的学号、姓名和成绩。程序将会创建新的学生结点,并通过将结点链接在一起构造链表。最后,程序将会遍历链表并打印每个学生的学号、姓名和成绩。最后释放链表内存,结束程序的执行。
阅读全文