順序表

/* *順序表上的基本操做 */ #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
相關文章
相關標籤/搜索