C++实现顺序表基本操做

此代码按照上篇博客线线性表基础概念,顺序表实现将概念用代码实现 #include<stdio.h> #include<iostream> using namespace std; //函数结果状态代码 #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define OVERFLO
相关文章
相关标签/搜索