struct node{
int data;
struct node *next;
};
struct node *head,*temp;
void insert()
{
struct node *var;
head=NULL;
var=(struct node*)malloc(sizeof(struct node));
printf("enter the data:");
scanf("%d",var->data);
temp=head;
if(head==NULL)
{
head=var;
head->next=NULL;
}
else
{
while(temp->next!=NULL)
{
temp=temp->next;
}
if(temp->next==NULL)
{
temp->next=var;
temp=temp->next;
temp->next=NULL;
}
}
}
void display()
{
temp=head;
if(temp==NULL)
{
printf("empty list");
}
while(temp->next!=NULL)
{
printf("%d",temp->data);
temp=temp->next;
}
}
void main()
{
int value,choice;
printf("\nenter choice:");
scanf("%d",&choice);
while(choice==1)
{
insert();
display();
printf("\nenter choice:");
scanf("%d",&choice);
}
getch();
}
我使用上面的c制作了一个链接列表,但是代码没有显示链接列表,而是显示空指针编译作为输出,如何解决问题,我是c编码的新手,所以无法找到适当的解决方案吗? ???
答案 0 :(得分:4)
scanf("%d",var->data);
//--> scanf("%d",&(var->data));
scanf
的参数必须是指针类型。
答案 1 :(得分:2)
对于每个插入内容,您都会将head
重置为NULL
。所以你总是在头部插入新的值,任何现有的值都会留在内存中,导致内存泄漏。
我想你想把行head=NULL;
移到main方法的开头。
并修复你的scanf
keeptalk说。
答案 2 :(得分:1)
在使用*var
分配next
后,您似乎缺少初始化*var
的成员malloc()
。