編程實現一個雙向鏈表的創建

一、創建雙向鏈表:爲方便,這裏定義了3個函數。 CreateNode()根據數據來建立一個節點,返回新建立的節點。 CreateList()函數根據一個節點數據建立鏈表的表頭,返回表頭節點。 AppendNode()函數總在表尾插入新節點(其內部調用CreateNode()生成節點),返回表頭節點。node #include <iostream> using namespace std; typ
相關文章
相關標籤/搜索