怎样写输出才能把所有的链表输出出来
怎样写输出才能把所有的链表输出出来
怎样写输出才能把所有的链表输出出来
2018-04-18
/*忘了我的和老师的内容不一样了emmmm
我写的是stu和creat 想写create的但是拼错了咳咳*/
#include <stdio.h>
#include <malloc.h>
struct stu{
int age;
char name[10];
struct stu *next;
};
struct stu * creat()
{
struct stu *head;
struct stu *p1,*p2;
int n=0;
p1=p2=(struct stu *)malloc(sizeof(struct stu));
scanf("%d %s",&p1->age,&p1->name);
head=NULL;
while(p1->age!=0)
{
n++;
if(n==1)
head=p1;
else
p2->next=p1;
p2=p1;
p1=(struct stu *)malloc(sizeof(struct stu));
scanf("%d %s",&p1->age,&p1->name);
}
free(p1);
p2->next=NULL;
return (head);
}
举报