數據結構——鏈表的逆置

鏈表的逆置: 將一個鏈表進行逆置: 如:10-->20-->30-->40        逆置後40-->30-->20-->10 分析: 方法一: 新建鏈表:遍歷舊鏈表,將舊鏈表的結點依此頭插到新鏈表中。 上代碼: #include <stdio.h> #include <stdlib.h> typedef struct Node { int data; struct Node* next
相關文章
相關標籤/搜索