#include<stdio.h>
#include<stdlib.h>
#define LEN sizeof(struct Student)
struct Student
{
long num;
float score;
struct Student *next;
};
int n;
struct Student *creat(void)
{
struct Student *head;
struct Student *p1, *p2;
n = 0;
p1 = p2 = (struct Student *)malloc(LEN);
scanf("%ld,%f", &p1->num, &p1->score);
head = NULL;
while (p1->num!=0)
{
n = n + 1;
if (n == 1)
{
head = p1;
}
else
{
p2->next = p1;
}
p2 = p1;
p1 =(struct Student *)malloc(LEN);
scanf("%ld,%f", &p1->num, &p1->score);
}
p2->next=NULL;
return(head);
}
int main()
{
struct Student *pt;
pt = creat();
printf("\nnum=%ld\nscore=%5.1f\n", pt->num, pt->score);
return 0;
}
写一个函数建立一个有3名学生数据的单向动态链表
最新推荐文章于 2023-01-04 00:41:45 发布
本文介绍了如何使用C语言定义结构体并创建动态链表,展示了从头节点创建链表并读取用户输入的整数和分数。通过`creat`函数,程序动态分配内存并存储学生信息,最后在`main`中输出第一个学生的数值信息。
摘要由CSDN通过智能技术生成