下边的程序 是我在按书上的要求写出的程序
#include "Stdio.h"
#include "malloc.h"
typedef struct node
{ int data;
struct node *next;
}Lnode,*Linklist;
Linklist outlist(Linklist H)
{
Lnode *s;
s=H;
printf("the linklist is:");
while (s)
{ printf("%d->",s->data);
s=s->next;
}
printf("NULL\n");
}
Linklist creat(int flag)
{ Linklist H=NULL;
Lnode *s;
int x;
printf("please input one date:");
scanf("%d",&x);
while (x!=flag)
{ s=malloc(sizeof(Lnode));
s->data=x;
s->next=H;
H=s;
outlist(H);
printf("please input one date:");
scanf("%d",&x);
}
return H;
}
int main(void)
{ Linklist H;
int flag;
printf("please input the end int:");
scanf("%d",&flag);
H=creat(flag);
printf("the list is over!\n");
getch();
return 0;
}
已经调试通过
现在老师要求我们在输入一个元素后能够显示出在栈中有多少个元素,请大侠能够指教指教