struct student * create(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);
}
{
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);
}
本文介绍了一个使用C语言创建学生信息链表的过程。通过结构体定义了学生信息,并利用malloc动态分配内存,实现链表节点的添加。文章详细展示了如何通过输入学生的编号和成绩来构建链表,并确保链表正确形成。

被折叠的 条评论
为什么被折叠?



