顺序表

/* *顺序表上的基本操做 */ #include <iostream> using namespace std; #define MAX_LIST_SIZE 100 typedef int DataType; typedef struct { DataType data[MAX_LIST_SIZE]; int length; }SeqList; //顺序表的基本运算 void Init
相关文章
相关标签/搜索