數據結構之鏈表的實現以及各類應用

#include <stdio.h> #include <malloc.h> #include <stdlib.h> //the max and the min. typedef struct LNode{ int data; struct LNode *next; }LNode; //初始化一個鏈表 LNode* initLinkList(LNode *
相關文章
相關標籤/搜索