有两个顺序表,其元素递增有序,设计一个算法,将这两个表合并到其中一个表中,并保持原表的有序性不变.
问题描述:
有两个顺序表,其元素递增有序,设计一个算法,将这两个表合并到其中一个表中,并保持原表的有序性不变.
答
#include
using namespace std;
int * init(int *x ,int &n)
{
coutn;
x = (int*)malloc(sizeof(int) * n);
cout