【浙大數據結構題集】習題2.5 兩個有序鏈表序列的合併

題目連接web 題意:兩個有序鏈表的合併,輸出的合併後的非遞減鏈表。svg 思路:主要是輸入和合並兩個函數,輸入用的尾插法,合併則是一一比較,複雜度O(m+n).函數 代碼:ui #include <stdio.h> #include <stdlib.h> typedef int ElementType; typedef struct Node *PtrToNode; struct Node {
相關文章
相關標籤/搜索