这段代码给了我一个分段错误(Core Dump)。我不太明白为什么?

时间:2014-09-21 07:34:25

标签: c

#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;而不是给我们更多细节?

1 个答案:

答案 0 :(得分:1)

您将ptr设置为NULL:

ptr=header;

然后尝试取消引用NULL。这一行会崩溃:

ptr->Next=NULL;

修正你的逻辑。