數據結構的C實現_順序表

//線性順序表 #include <stdio.h> #include <stdlib.h> #define LIST_INIT_SIZE 1000 //線性表存儲空間的初始分配量 #define LISTINCRESEMENT 100 //線性表存儲空間的分配增量 #define OK 1 #define ERROR 0 #define OVERFLOW -2 typedef int elemT
相關文章
相關標籤/搜索