數據結構實現兩個有序鏈表的合併(c語言)

數據結構實現兩個有序鏈表的合併(c語言) 現有兩個有序單鏈表,經過代碼實現將兩個單鏈表合併爲一個有序的新表,要求使用舊錶的空間,不能新分配內存web #include <stdio.h> #include <stdlib.h> typedef struct List { int a; struct List *next; }list; void newList(list *l) { //初始
相關文章
相關標籤/搜索