摘要: C 单链表(Singly Linked List) /* * singly_linked_list.c * 单向链表 * sll = singly_linked_list * */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> 阅读全文
posted @ 2019-12-20 22:41 no樂on 阅读(396) 评论(0) 推荐(0) 编辑
摘要: C 顺序表(Sequence List) /* * sequence_list.c * 顺序表 * sl = sequence list * 线性表的顺序存储是指在内存中用地址连续的一块存储空间顺序存放线性表中的各数据元素 * 用这种存储形式的线性表称为顺序表 * */ #include <stdi 阅读全文
posted @ 2019-12-20 22:40 no樂on 阅读(231) 评论(0) 推荐(0) 编辑