线性表的顺序表示和实现

一、线性表是最经常使用且最简单的一种数据结构。简言之,一个线性表就是n个数据元素的有限序列。数据结构 存储空间是连续变化的 spa 线性表的顺序表示和实现:code #include <stdio.h> #include <stdlib.h> #define LIST_INIT_SIZE 10 #define LISTINCREMENT 10 #define ElemType char //线
相关文章
相关标签/搜索