错误(Id)返回1退出状态

时间:2017-04-09 11:57:55

标签: c++ c data-structures linked-list

编程我试图遍历单链表,收到错误,好像和while循环没有正确应用,请检查

该程序位于我尝试使用do while和指针遍历的地方。

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

int main()
{
    char ch;
    struct node
    {
        int info;
        struct node *next;
    };
    typedef struct node node;
    node *start, *ptr, *ne;
    ptr=NULL;
    int count=0;
    do
    {
    ne=(node*) malloc(sizeof(node));
    printf("\nEnter Data: ");
    scanf("%d",&ne->info);
    if(ptr!=NULL)
    {
    ptr->next=ne;
    ptr=ptr->next;
    }
    else {
    start=ne;
    ptr=ne;
    }
    printf("\nDo you wish to continue?\n ");
    scanf("%c",&ch);
      }while(ch=='y'|| ch=='Y');
      ptr->next=NULL;
      printf("The linked list is: ");
      ptr=start;
      while(ptr!=NULL)
      {
      printf("\t%d",&ptr->info);
      ptr=ptr->next;
      count++;
      }
      printf("\nTotal number of elements: %d",count);
    return(0);     


}

1 个答案:

答案 0 :(得分:0)

更改

printf("\t%d",&ptr->info);

 printf("\t%d",ptr->info);

另外,我不建议使用相同的名称&#34; node&#34;在typedef struct node node; 但它仍然不是问题。

修改

我还发现您的代码存在问题:

更改

printf("\nDo you wish to continue?\n ");
scanf("%c",&ch);

printf("\nDo you wish to continue?\n ");
getchar();
scanf("%c",&ch);

您也可以将其更改为

printf("\nDo you wish to continue?\n ");
scanf(" %c",&ch); //add a space before %c

为什么会导致错误?

在尝试使用&#39; printf()&#39;打印任何内容的程序中缓冲区中留有一个空格,因此我们必须读取它并忽略,否则ch将被分配空格。要读取空格并忽略,我们有两个选项,如上所述。尝试任何一个。