有多组测试数据,每组测试数据占两行。第一行是集合A,第一个整数m(0<=m<=100)代表集合A起始有m个元素,后面有m个非递减排序的整数,代表A中的元素。第二行是集合B,第一个整数n(0<=n<=100)代表集合B起始有n个元素,后面有n个非递减排序的整数,代表B中的元素。每行中整数之间用一个空格隔开。
每组测试数据只要求输出一行,这一行含有 m+n 个来自集合 A 和集合B 中的元素。结果依旧是非递减的。每个整数间用一个空格隔开。
4 3 5 8 11
7 2 6 8 9 11 15 20
2 3 5 6 8 8 9 11 11 15 20
#include
#include/* malloc()等 */
#include /* EOF(=^Z或F6),NULL */
using namespace std;
#define OK 1
#define ERROR 0
#define LIST_INIT_SIZE 10 /* 线性表存储空间的初始分配量 */
#define LISTINCREMENT 2 /* 线性表存储空间的分配增量 */
typedef int ElemType;
typedef int Status;
typedef struct LIST
{
ElemType *elem;
int length;
int listsize;
}Sqlist;
Status SetList (Sqlist *L)
{
(*L).elem= (ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType));
if(!(*L).elem)
return ERROR ;
(*L).length=0;
(*L).listsize=LIST_INIT_SIZE;
return OK;
}
int ListLength (Sqlist L)
{
return L.length;
}
void PrintList(Sqlist L)
{
ElemType *q;
int i;
q=L.elem;
for(i=0;i=e)
break;
return (i+1);
}
Status InList(Sqlist *L,int i,ElemType e)
{
if(i<1||i>(*L).length+1)
return ERROR;
if((*L).length>=(*L).listsize)
{
ElemType *newbase;
newbase=(ElemType *)realloc((*L).elem,((*L).listsize+LISTINCREMENT)*sizeof(ElemType));
if(!newbase)
return ERROR ;
(*L).listsize+=LISTINCREMENT;
(*L).elem=newbase;
}
ElemType *q,*p;
q=(*L).elem+i-1;
p=(*L).elem+(*L).length-1;
for(;p>=q;p--)
*(p+1)=*p;
*q=e;
(*L).length++;
return OK;
}
int main()
{
int i,m,n,a[110],b[110],j;
while(cin>>n)
{
for(i=0;i>a[i];
cin>>m;
for(i=0;i>b[i];
struct LIST La;
SetList(&La);
for(i=0;i