[求助]关于链表
请教一个问题,为什么它显示最后输入的数.有什么办法能全部显示出来!
我采用的是链式!
#include <stdio.h>
#include <stdlib.h>
creat();
output();
struct shuju
{
int a;
struct shuju *next;
};
struct shuju *h;
main()
{
int i;
h=NULL;
for(i=0;i<5;i++)
creat();
output();
}
creat()
{
struct shuju *q,*t;
q=(struct shuju *)malloc(sizeof(struct shuju));
q->next=NULL;
t=q;
if(h==NULL)
{
h=t=q;
printf("nter data to a:");
scanf("%d",&t->a);
}
else
{
t->next=q;
t=q;
printf("enter data to a:");
scanf("%d",&t->a);
}
}
output()
{
struct shuju *q;
q=(struct shuju *)malloc(sizeof(struct shuju));
q=h;
while(q)
{
printf("%5d",q->a);
q=q->next;
}
}