我尝试打印一个链接列表,但没有打印列表中的所有成员。您能解释一下我的代码中的问题吗?代码行(newhead = newhead-> next)是否移动了列表的其余部分在另一个函数上?

#include <stdio.h>
#include <stdlib.h>

struct test_struct{
  int data;
  struct test_struct *next;
};

struct test_struct* create();
void add_node();
int main()
{
  add_node();

  return 0;
}

void add_node()
{
  struct test_struct* head = create();
  struct test_struct* newhead;
  newhead = malloc(sizeof(struct test_struct));
  newhead->data=2;
  newhead->next=head;
  head=newhead;
  while(newhead->next != NULL)
  {
    printf("%d\n",newhead->data);
    newhead=newhead->next;
  }



}


struct test_struct* create()
{

  struct test_struct* head=NULL;
  struct test_struct* temp = (struct test_struct*)malloc(sizeof(struct test_struct));
  if(NULL==temp)
  {
    printf("error in memory");
    return 0;
  }
  temp->data=5;
  temp->next=head;
  head=temp;

  return head;
}

最佳答案

当while循环位于没有next节点的节点上时,它将停止。它不会在该节点上打印数据。

相反,您要在它指向无节点时停止;也就是说,在列表“掉到了尽头”之后:

while(newhead != NULL)
{
    printf("%d\n",newhead->data);
    newhead=newhead->next;
}

08-16 19:35