通过了编译但是在向单链表里输入第二个数字的时候,程序出错并中止。
跪求大佬解答。
#include <stdio.h>
#include <stdlib.h>
typedef int Elemtype;
typedef struct LNode
{
Elemtype data;
struct LNode *next;
}LNode,*LinkList;
void createlist(LinkList head,int n)
{
int i;
LinkList p2;
head=(LinkList)malloc(sizeof(LNode));
for( i=0;i<=n;i++)
{ p2=(LinkList)malloc(sizeof(LNode)); //开辟新结点
p2=p2->next; //连上新结点
}
}
void iolist(LinkList head,int n)
{
int i;
LinkList p;
p=head->next;
for(i=0;i scanf("%d",&p->data);
p=p->next;
}
for(i=0;i printf("%d\n",p->data);
p=p->next;
}
}
int main()
{
int n;
printf("n=");
scanf("%d",&n);
LinkList head;
createlist(head,n);
iolist(head,n);
return 0;
}