摘要: /*单链表的头插法和尾插法c语言实现*/ #include <stdio.h>#include <stdlib.h>#include <string.h>#define SIZE 100/*简单的定义一个链表节点的数据单元*/typedef struct student_t{ int num; ch 阅读全文
posted @ 2017-07-28 23:08 莫遥燚 阅读(1055) 评论(0) 推荐(0)