線性表數據結構類型定義及相關操做總結

一、順序存儲結構(如數組)html 定義:數組 #define MAXSIZE 20 typedef struct{ int data[MAXSIZE]; //假設這裏是整型 int length; //線性表長度 }; 讀取其中某個元素:假設線性順序表已存在,讀取其中第i個元素,其值返回到e中指針 #define ERROR 0 #define OK 1 //定義返回狀態 int Ge
相關文章
相關標籤/搜索