程序如下#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*)m...
阅读全文
2006
03-23