c语言建立和输出单链表程序中,为什么第一个数据没输出来?请各位高手帮忙看看,不胜感激!!!

#include<stdio.h>#include<malloc.h>#defineNULL0structstudent{intdate;structstudent*ne... #include<stdio.h>
#include<malloc.h>
#define NULL 0
struct student
{int date;
struct student *next;
};
void main()
{struct student *head,*p,*r;
int i,j,len=0;
p=(struct student *)malloc(sizeof(struct student));
printf("input the date:");
scanf("%d",&p->date);
while(p->date!=0)
{p=(struct student *)malloc(sizeof(struct student));
if(len==0)
{head=r=p;len++;}
else
{r->next=p;
r=p;len++;}
scanf("%d",&p->date);
}free(p);
p->next=NULL;
p=head;
while(p->next!=NULL)
{printf("%d",p->date);
p=p->next;
}
}
展开
 我来答
woshi1jr
2011-10-17 · 超过21用户采纳过TA的回答
知道答主
回答量:50
采纳率:100%
帮助的人:52.4万
展开全部
楼主你好,你的代码问题出了一点小问题:

#include<stdio.h>
#include<malloc.h>
#define NULL 0

struct student
{int date;
struct student *next;
};

void main()
{
struct student *head,*p,*r;

int i,j,len=0;
p=(struct student *)malloc(sizeof(struct student));
printf("input the date:");
scanf("%d",&p->date);
while(p->date!=0)
{
p=(struct student *)malloc(sizeof(struct student)); //此处重新开辟了新空间,len==0时,会导致之前的head指向的是新开辟的空间,而不是之前那个存放数据的空间。
if(len==0)
{
head=r=p;
len++;}
else
{
r->next=p;
r=p;
len++;
}
scanf("%d",&p->date);
}
free(p);
p->next=NULL;
p=head;
while(p->next!=NULL)
{
printf("%d\n",p->date);
p=p->next;
}
}
追问
那应该怎么改呢?我是在自学,感觉最基本的问题都不好领会啊
追答
我建议使用一个变量用来接收判断的数据,满足条件后再存入链表。
#include
#include
#define NULL 0

struct student
{int date;
struct student *next;
};

void main()
{
struct student *head,*p,*r;

int i,j,len=0,num;

printf("input the date:");
scanf("%d",&num);
while(num!=0)
{
p=(struct student *)malloc(sizeof(struct student));
p->date=num;
if(len==0)
{
head=r=p;
len++;}
else
{
r->next=p;
r=p;
len++;
}
scanf("%d",&num);
}

//此处如果用free(p),会切断指针和相应节点的关联,从而使后面的p->next=NULL;没有意义。
p->next=NULL;
p=head;
while(p!=NULL)
{
printf("%d\n",p->date);
p=p->next;
}
}
百度网友9df37c8
2011-10-17 · TA获得超过215个赞
知道小有建树答主
回答量:309
采纳率:0%
帮助的人:224万
展开全部
r->next=p; //
r=p; //r=r-next,你现在的情况,第二个循环就把头节点覆盖了
len++;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式