數據結構--單鏈表

single_linklist.h #ifndef __SINGLE_LINKLIST_H__ #define __SINGLE_LINKLIST_H__ #include <stdio.h> #include <stdlib.h> typedef int datatype; typedef struct node{ datatype data; struct node *next; }
相關文章
相關標籤/搜索