数据结构——顺序表的创建、删除、插入、遍历

顺序表的声明和宏定义: typedef int Status; typedef int ElemType; #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 constexpr auto OVERFLOW = -2; #define LIST_INIT_SIZE 100 //线性表存
相关文章
相关标签/搜索