數據結構高分筆記-線性表代碼

//線性表結構體定義 //順序表定義 typedef struct{ int data[maxsize]; int length; }sqlist; //單鏈表定義 typedef struct LNode{ int data; struct LNode *next; }LNode; //雙鏈表定義 typedef struct DLNode{ int data; str
相關文章
相關標籤/搜索