c语言链表问题,求高手指点

#defineNULL0structstudent{longnum;floatscore;structstudent*next;};intn;structstudent*... #define NULL 0
struct student
{
long num;
float score;
struct student *next;
};
int n;
struct student *creat(void)
{
struct student *head,*p1,*p2;
p1=p2=(struct student*)malloc(sizeof(struct student));
scanf("%ld,%f",&p1->num,&p1->score);
head=NULL;
n=0;
while(p1->num!=0)
{
n=n+1;
if(n==1)head=p1;
else p2->next=p1;
p2=p1;
p1=(struct student*)malloc(sizeof(struct student));
scanf("%ld,%f",&p1->num,&p1->score);
}
p2->next=NULL;
return head;
}
void shuchu(struct student *p)
{
while(p->next!=0)
{
printf("the num is %ld,the score is %f\n",p->num,p->score);
p=p->next;
}

}
int main ( )
{
struct student *q;
q=creat( );
shuchu(q);

return 0;
}
我的程序最后一组数据无法输出,是我shuchu函数里面我不知道条件怎么设置才能全部输出,还有我想输完数据后回车以后还能再输该怎么办
展开
 我来答
百度网友b5144a1
2012-05-19
知道答主
回答量:16
采纳率:0%
帮助的人:7.4万
展开全部
struct student *creat(void)
{
struct student *head,*p1,*p2;creat
p1=(struct student*)malloc(sizeof(struct student));
scanf("%ld,%f",&p1->num,&p1->score);
head=p1;
p2=p1;
while(p1->num!=0)
{
p1=(struct student*)malloc(sizeof(struct student));
p1->next=NULL;
p2->next=p1;
p2=p1;
scanf("%ld,%f",&p1->num,&p1->score);
}
p2->next=NULL;
return head;
}

你的creat函数有问题 我把你的creat函数改成上面的程序 就OK了。
zhouciming
2012-05-19 · TA获得超过223个赞
知道小有建树答主
回答量:393
采纳率:0%
帮助的人:156万
展开全部
输完数据后回车以后还能再输该怎么办=>外面再套一层循环呀!!
追问
while(p->next!=0)
{
printf("the num is %ld,the score is %f\n",p->num,p->score);
p=p->next;
}

我这个函数最后一个会漏了,有什么办法能让最后一个数据也输出
追答
while(p!=0)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式