试编写一个算法,将两个有序线性表合成一个有序线性表...最好是在c++上能够直接运行出来的

#include<stdio.h> #include<stdlib.h> #include<conio.h> typedef int ElemType; #define INITSIZE 100 typedef struct { ElemType *data; int length; int listsize; }sqlist; /*初始化*/ void initlist(sqlist
相关文章
相关标签/搜索