xiumy 的 站内主页
2006
03-23
03-23
程序如下
#define NULL 0#define TYPE struct stu#define LEN sizeof (struct stu)struct stu{int num;int age;struct stu *next;};TYPE *creat(int n){struct stu *head,*pf,*pb;int i;for(i=0;i<n;i++){ pb=(TYPE*....
Read More >