#define NULL 0
#define len sizeof(struct zhi)
#include "stdio.h"
struct zhi
{int a;
struct zhi *next;
};
struct zhi *creat()
{struct zhi *p1;
struct zhi *p2;
struct zhi *head;
int n=0;
p1=p2=(struct zhi *)malloc(len);
scanf("%d ",&p1->a);
head=NULL;
while(p1->a!=NULL)
{ n=n+1;
if(n==1)
{head=p1;
p2=p1;
}
else
{p1=(struct zhi *)malloc(len);
scanf("%d ",&p1->a);
p2->next=p1;
p2=p1;
}
}
p2->next=NULL;
return(head);
}
main()
{struct zhi *p;
p=creat();
while(p->next!=NULL)
{ printf("%d ",p->a);
p=p->next; }
}
这是个链表的输入,输出程序。
我想得到的是输入:12 54 65 0 输出:12 54 65
但是实际上输入是: 12 54 65 0 0 才能得到:12 54 65
谁能帮解决一下。我已经想了一天了。
----------------解决方案--------------------------------------------------------
你这个程序只有两个问题:
1. 需加头文件#include "malloc.h"
2. 主函数应该返回NULL。所以应在main()前面加void
又或者在前面加int,然后在主函数里再加 return 0.即可!
应该没问题了。
----------------解决方案--------------------------------------------------------
谢谢你的回复,不过好像还是不行啊。
1。我是在TURBO 2.0下编译的,好想可以不用调用malloc.h。
2。系统默认就是int型的,应该不用在写了吧。
我感觉这样改跟没有改一个效果哦。
----------------解决方案--------------------------------------------------------
我在VC6.0上运行是可以的呀?
骗人的吧?
----------------解决方案--------------------------------------------------------
#define NULL 0
#define len sizeof(struct zhi)
#include "stdio.h"
struct zhi
{int a;
struct zhi *next;
};
struct zhi *creat()
{struct zhi *p1;
struct zhi *p2;
struct zhi *head;
int n=0;
p1=p2=(struct zhi *)malloc(len);
scanf("%d ",&p1->a);//消除输入格式中的空格,下同.
head=NULL;
while(p1->a!=NULL)
{ n=n+1;
if(n==1)
{head=p1;
p2=p1;
}
else
{p1=(struct zhi *)malloc(len);
scanf("%d ",&p1->a);
p2->next=p1;
p2=p1;
}
}
p2->next=NULL;
return(head);
}
main()
{struct zhi *p;
p=creat();
while(p->next!=NULL)
{ printf("%d ",p->a);
p=p->next; }
}
这是个链表的输入,输出程序。
我想得到的是输入:12 54 65 0 输出:12 54 65
但是实际上输入是: 12 54 65 0 0 才能得到:12 54 65
谁能帮解决一下。我已经想了一天了。
----------------解决方案--------------------------------------------------------
晕,这样就行了,我白看了半天
----------------解决方案--------------------------------------------------------
谢谢大家的回复,5楼的为正解。
我只是想输入时有空格后再输入下一个值,但是为什么我那样输入会要多输入一个0才能输出答案呢?
----------------解决方案--------------------------------------------------------