數據結構實驗——動態分配鏈表

數據結構實驗——動態分配鏈表 #include <iostream> #include <cstdio> #include <malloc.h> #define OK 1 #define ERROR 0 typedef int Status; typedef struct LNode{ int data; struct LNode *next; }LNode, *LinkList; LinkLi
相關文章
相關標籤/搜索