C - 链接列表打印问题



我尝试打印链表,但它没有打印列表中的所有成员。您能解释一下我的代码中的问题是什么吗? 代码行(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("%dn",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("%dn",newhead->data);
    newhead=newhead->next;
}

26 行应该while (newhead != NULL)

如果你想继续增长,你也可以查看每个函数的用途,因为add_node()create()正在做几乎相同的事情,而且add_node()还打印列表,这可能是一个单独的函数的目的。

相关内容

  • 没有找到相关文章

最新更新