c中的雙向鏈表實現

一、以前在培訓公司學習了用C語言實現雙向鏈表的知識,如今有空從新寫一遍。首先定義一下頭文件list.h。node 1 #ifndef __LIST_H__ 2 #define __LIST_H__ 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 #include <string.h> 7 8 //雙向循環列表 9 str
相關文章
相關標籤/搜索