数据结构(C语言)用栈和链表编写猴子选大王程序.pdf
#include #include struct slist { int data; struct slist *next; }; typedef struct slist SLIST; SLIST *creat(int n)//建立链表 { int i; SLIST *h*s*r; h=(SLIST)malloc(sizeof(SLIST; r=h; fo
下载地址
用户评论