我正在尝试在 C 中实现链接列表,我在列表末尾插入节点,在我插入值之后,除了最后一个值之外的所有值都在打印。这是代码:
list_t *add(list_t *l,int e)
{
list_t *head;
if(l == NULL)
{
l = malloc(sizeof(list_t));
l->val = e;
l->next = NULL;
return l;
}
head = l;
while(l->next != NULL)
l=l->next;
l->next = malloc(sizeof(list_t));
l=l->next;
l->val = e;
l->next = NULL;
return head;
}
这是主要功能的实现:
int main()
{
list_t *ints=NULL;
list_t *temp;
int i, choice;
while(1){
printf("1. Enter\n2. Show List\n3. Exit\n\n");
scanf("%d", &choice);
switch(choice){
case 1:
printf("Enter item\n");
scanf("%d", &i);
ints = add(ints,i);
break;
case 2:
temp = ints;
while(temp->next != NULL)
{
printf("%d\n",temp->val);
temp=temp->next;
}
break;
case 3:
default:
exit(0);
}
}
return 0;
}