數據結結構學習 -- 線性表

1. 線性表的順序表示指用一組地址連續的存儲單元依次存取線性表的數據 線性表動態分配順序存儲結構 #define LIST_INIT_SIZE 100 #define LIST_INCREMENT 10 typedef struct {   ElemType* elem;   int length;   int listsize; }SqList;   2。 線性表的鏈式存取結構的特點是用一組任意
相關文章
相關標籤/搜索