Problems are not stop signs; they are guidelines.
問題的出現(xiàn)不是讓你止步,而是給你指路。———— Robert Schuller
看了不少資料,之前一直糊涂,感覺剛剛弄明白,所以又寫了一遍單鏈表的實(shí)現(xiàn),包括頭插和尾插…C語言的指針果然水深啊。 #include #include //定義鏈表節(jié)點(diǎn)結(jié)構(gòu) struct LinkedList { int data; struct LinkedList *next; }; //定義一個(gè)指向struct LinkedList的指針的類型node typedef struct LinkedList *node; /** * 創(chuàng)建一個(gè)新節(jié)點(diǎn) * @return node */ node create_node() { node ...
最近在學(xué)習(xí)數(shù)據(jù)結(jié)構(gòu)和c語言,以下是用c語言寫的一個(gè)單鏈表,實(shí)現(xiàn)了鏈表的創(chuàng)建和清空,元素的添加和刪除以及鏈表的遍歷,其中元素節(jié)點(diǎn)的添加使用的是尾插法。 以下代碼在c-free/win10下編譯通過 #include // 之前缺少stdlib 感謝Super wan留言指出 #include //定義單鏈表的節(jié)點(diǎn)結(jié)構(gòu) typedef struct node{ int data; struct node *next; } LinkedListNode, *LinkedList; //函數(shù)聲明 LinkedL...