摘要: 顺序有序表的合并 此为简单的非递减有序排列,以整数为例: 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 typedef int Elem; 5 6 typedef struct 7 { 8 Elem *elem; 9 int len; 10 }List; 阅读全文
posted @ 2019-10-07 14:36 wwww2 阅读(1460) 评论(0) 推荐(0) 编辑