摘要: #include<stdio.h>#include<stdlib.h>#include<string.h>#include<windows.h>typedef struct node{ char name[20];//姓名 char num[20];//学号 char sex;//性别 struct node *next;}slink;void deletef(slink *head);//删除操... 阅读全文
posted @ 2012-03-28 12:52 Evan_Wang 阅读(159) 评论(0) 推荐(0) 编辑