(轉)合併兩個有序線性表的元素(C語言版)

//合併兩個有序線性表的元素保證無重複元素      #include<stdio.h>   struct LinerList   {       int *list;       int size;       int MAXSIZE;   };   int main()   {       int list1[15]={2,5,7,8,10,14,19,22,25,30};       int
相關文章
相關標籤/搜索