顺序表应用5:有序顺序表归并
Time Limit: 100MS Memory Limit: 800KB
Problem Description
已知顺序表A与B是两个有序的顺序表,其中存放的数据元素皆为普通整型,将A与B表归并为C表,要求C表包含了A、B表里所有元素,并且C表仍然保持有序。
Input
输入分为三行:
第一行输入m、n(1<=m,n<=10000)的值,即为表A、B的元素个数;
第二行输入m个有序的整数,即为表A的每一个元素;
第三行输入n个有序的整数,即为表B的每一个元素;
第一行输入m、n(1<=m,n<=10000)的值,即为表A、B的元素个数;
第二行输入m个有序的整数,即为表A的每一个元素;
第三行输入n个有序的整数,即为表B的每一个元素;
Output
输出为一行,即将表A、B合并为表C后,依次输出表C所存放的元素。
Example Input
5 3 1 3 5 6 9 2 4 10
Example Output
1 2 3 4 5 6 9 10
Code realization
#include <stdio.h> #include <stdlib.h> typedef int element; typedef struct { element *elem; int length; }Lis; //开内存 void creat(Lis &La,int len) { La.elem = (element*)malloc(len*sizeof(element)); La.length = len; }//输入函数 void sca(Lis &L) { for(int i=0;i<L.length;i++) scanf("%d",&L.elem[i]); } //合并函数 void combine(Lis &La,Lis &Lb,Lis &Lc) { int i=0,j=0,k=0; while(i<La.length&&j<Lb.length) { if(La.elem[i]>=Lb.elem[j]) { Lc.elem[k]=Lb.elem[j]; k++; j++; } else { Lc.elem[k]=La.elem[i]; k++; i++; } } while(i<La.length) { Lc.elem[k]=La.elem[i]; k++; i++; } while(j<Lb.length) { Lc.elem[k]=Lb.elem[j]; k++; j++; } } //输出函数 void pri(Lis L) { for(int i=0;i<L.length;i++) { printf("%d",L.elem[i]); if(i<L.length-1) printf(" "); } } int main() { int m,n; Lis La,Lb,Lc; scanf("%d %d",&m,&n); creat(La,m); creat(Lb,n); creat(Lc,m+n); sca(La); sca(Lb); combine(La,Lb,Lc); pri(Lc); return 0; }