摘要: 话说输入N, 表示1~n个数, 在输入m,表示要删除的数。代码如下:View Code 1 #include <stdio.h> 2 #include <malloc.h> 3 #define LEN sizeof(struct student) 4 struct student 5 { 6 int num; 7 struct student *next; 8 }; 9 int main()10 {11 struct student *head,*p1,*p2;12 int i,m;13 scanf( "%d", &m );14 h... 阅读全文
posted @ 2012-02-21 21:16 狸の舞 阅读(273) 评论(0) 推荐(0) 编辑