單鏈表之歸併鏈表

兩個鏈表都是增序,要求合併後的結果也爲增序且不含重複數據node 直接上代碼,編譯環境VS2017ios #include "pch.h" #include <iostream> using namespace std; //單鏈表 typedef struct LNode { int data; struct LNode *next; }LNode; //輸出單鏈表 void outpu
相關文章
相關標籤/搜索