單鏈表的建立(有頭結點和無頭結點)

一、有頭結點的單鏈表的建立 #include <iostream> using namespace std; struct ListNode{ int val; ListNode *next; }; //有頭結點的單鏈表的建立 int CreateListNode(ListNode *head) { if(head == NULL) return 1
相關文章
相關標籤/搜索