#include <stdio.h>
#include <stdlib.h>
struct Node{ int Element; struct Node* Next;};
int main(){
struct Node *header=NULL;
struct Node *ptr;
在此处创建链接列表
ptr=header;
ptr->Next=NULL;
int x;
printf("Input the elements. End with zero.\n");
scanf("%d", &x);
int c=0;//Counter
阅读每个元素
while(x!=0)
{
if(c==0)
{ header=(struct Node*)malloc(sizeof(struct Node));
ptr=header;
ptr->Element=x;
c++;
scanf("%d", &x);
}
else
{ ptr->Next=(struct Node*)malloc(sizeof(struct Node));
ptr=ptr->Next;
ptr->Element=x;
ptr->Next=NULL;
c++;
scanf("%d", &x);
}
}
printf("/n");
struct Node *temp;
if(header==NULL)
printf("List is empty.\n");
else
{
for(temp=header;temp!=NULL;temp=temp->Next)
{printf("%d\n", temp->Element);}
}
我在这里打印列表。
}
另外,我根本不了解分段错误。为什么它只是说&#34;分段错误:核心转储&#34;而不是给我们更多细节?
答案 0 :(得分:1)
您将ptr设置为NULL:
ptr=header;
然后尝试取消引用NULL。这一行会崩溃:
ptr->Next=NULL;
修正你的逻辑。