數據結構線性表中的順序表實現

#include<iostream> #include<malloc.h> using namespace std; typedef int ElemType; #define InitSize 100 #define LISTINCREMENT 10 typedef struct{     ElemType *data;     int length;//線性表的長度     int lists
相關文章
相關標籤/搜索