顺序表应用5:有序顺序表归并
Time Limit: 100 msMemory Limit: 880 KiB
Problem Description
已知顺序表A与B是两个有序的顺序表,其中存放的数据元素皆为普通整型,将A与B表归并为C表,要求C表包含了A、B表里所有元素,并且C表仍然保持有序。
Input
输入分为三行:
第一行输入m、n(1<=m,n<=10000)的值,即为表A、B的元素个数;
第二行输入m个有序的整数,即为表A的每一个元素;
第三行输入n个有序的整数,即为表B的每一个元素;
Output
输出为一行,即将表A、B合并为表C后,依次输出表C所存放的元素。
Sample Input
5 3 1 3 5 6 9 2 4 10
Sample Output
1 2 3 4 5 6 9 10
Hint
Source
#include<bits/stdc++.h>
using namespace std;
typedef struct{
int *elem;
int length;
int listsize;
}List;
void creat1(List &L, int n){
L.elem = new int[10005];
if(!L.elem)exit(0);
for(int i = 0; i <= n - 1; i++){
cin>>L.elem[i];
}
L.listsize = n;
}
void creat2(List &L, int y){
L.elem = new int [20005];
if(!L.elem)exit(0);
L.listsize = y;
}
void f(List &L1, List &L2, List &L3, int n, int m){
int i = 0, j = 0, t = 0;
while(i <= n -1 && j <= m - 1){
if(L1.elem[i] <= L2.elem[j]){
L3.elem[t++] = L1.elem[i];
i++;
}
else{
L3.elem[t++] = L2.elem[j];
j++;
}
}
if(i == n){
while(j <= m)L3.elem[t++] = L2.elem[j++];
}
else while(i <= n)L3.elem[t++] = L1.elem[i++];
}
int main(){
int n, m;
List L1, L2, L3;
cin>>n>>m;
creat1(L1, n);
creat1(L2, m);
creat2(L3, n + m);
f(L1, L2, L3, n, m);
for(int i = 0; i <= n + m - 1; i++){
if(i == n + m - 1)cout<<L3.elem[i]<<endl;
else cout<<L3.elem[i]<<' ';
}
return 0;
}