2018年12月4日

双向链表的创建,查找,删除

摘要: 1 #include 2 #include 3 #include 4 /* 5 双向链表,创建,查找,删除 6 */ 7 //定义结构 8 typedef struct stu 9 { 10 char name[30]; 11 char sex; 12 int num; 13 float math; 14 float chinese... 阅读全文

posted @ 2018-12-04 09:27 王朝马汉 阅读(315) 评论(0) 推荐(0) 编辑

导航