节点元素不在单链接列表程序中打印

时间:2016-11-26 19:59:52

标签: c struct turbo-c++

我在TurboC ++中创建了一个C程序。这个简单的程序目标是创建一个链表,在列表的末尾插入每个元素,然后打印节点的值。(编辑程序有点改变,使我更容易理解,但仍然是问题节点没有打印存在) 问题是,某些节点元素没有打印

#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
#include<ctype.h>
#include<conio.h>
struct node
{
  int data;
  struct node *link;
};
typedef struct node ND;
void main()
{
  ND *start,*current,*temp;
  start=NULL;
  do
  {
    temp=(ND*)malloc(sizeof(ND));
    printf("\n Enter Node Value");
    scanf(" %d",&temp->data);
    temp->link=NULL;
    if(start==NULL)
    {
      start=current=temp;
    }
    else
    {
      current->link=temp;
      current=temp;
    }
    fflush(stdin);
    printf("\nDo You Want TO Continue?(Y/N)");
  }while(toupper(getchar())!='N');
  current=start;
  printf("\nThe Elements OF Linked List ARE:");
  while(current!=NULL)
  {
    printf(" %d",current->data);
    current=current->link;
  }
}

2 个答案:

答案 0 :(得分:2)

您从错误的元素打印列表。你应该从头开始。 像:

p = subprocess.Popen("false | true; exit ${PIPESTATUS[0]}", shell=True, executable='/bin/bash', stdout=subprocess.PIPE, stderr=subprocess.PIPE)

# at this point you do your filtering, eg. using p.stdout.readinto(buf)

p.wait()
if p.returncode != 0:
    # handle it here

顺便说一句,你的head元素总是为NULL。 以下是将元素添加到列表的正确方法:

temp1 = head;
while(temp1!=NULL)
{
  printf(" %d",temp1->data);
  temp1=temp1->link;
}

答案 1 :(得分:0)

该程序现在正常工作我做了一些更改,使这个程序更容易理解。这是代码:

#include<stdio.h>
#include<conio.h> 
struct node
{
  int data;
  struct node *link;
};
typedef struct node ND;
void main()
{
  ND *head,*tail,*temp1;
  int n;
  char ch;
  printf("\nEnter Data?(y/n)\n");
  scanf(" %c",&ch);
  fflush(stdin);
  if(ch=='y' || ch=='Y')
  {
    tail=(ND*)malloc(sizeof(ND));
    printf("\n Enter Node Value");
    scanf(" %d",&n);
    tail->data=n;
    tail->link=NULL;
    head=tail;
    printf("\nDo You Want TO Continue?(Y/N)");
    scanf(" %c",&ch);
    fflush(stdin);
  }
  while(ch=='y' || ch=='Y')
  {
    printf("\n Enter Node Value");
    scanf(" %d",&n);
    tail->link=(ND*)malloc(sizeof(ND));
    tail->link->data=n;
    tail->link->link=NULL;
    tail=tail->link;
    printf("\nEnter More Data?(y/n)\n");
    scanf(" %c",&ch);
    fflush(stdin);
  }
  printf("\nElements Of Linked List Are:");
  temp1=head;
  while(temp1!=NULL)
  {
    printf(" %d",temp1->data);
    temp1=temp1->link;
  }
  printf("\n");
  fflush(stdout);
  getch();
}