程序填空题:归并排序(递归法)
归并排序(递归法)。
```c++
#include
#define MAXSIZE 1000
using namespace std;
typedef struct
{
int key;
char *otherinfo;
}ElemType;
typedef struct
{
ElemType *r;
int length;
}SqList;
void Create_Sq(SqList &L)
{
int i,n;
cin>>n; //输入的值不大于 MAXSIZE
for(i=1;i<=n;i++)
{
cin>>L.r[i].key;
L.length++;
}
}
void show(SqList L)
{
int i;
for(i=1;i<=L.length;i++)
if(i==1)
cout< else
cout<<" "<}
void Merge(ElemType R[],ElemType T[],int low,int mid,int high)
{
int i,j,k;
i=low; j=mid+1;k=low;
while(i<=mid&&j<=high)
{
if(R[i].key<=R[j].key) T[k++]=R[i++];
else T[k++]=R[j++];
}
while(i<=mid)
T[k++]=R[i++];
while(j<=high)
T[k++]=R[j++];
}
void MSort(ElemType R[],ElemType T[],int low,int high)
{
int mid;
ElemType *S=new ElemType[MAXSIZE];
if(low==high)
@@[T[low]=R[low]](2);
else
{
mid=(low+high)/2;
@@[MSort(R,S,low,mid)](2);
@@[MSort(R,S,mid+1,high)](2);
@@[Merge(S,T,low,mid,high)](2);
}
}
void MergeSort(SqList &L)
{
MSort(L.r,L.r,1,L.length);
}
int main()
{
SqList R;
R.r=new ElemType[MAXSIZE+1];
R.length=0;
Create_Sq(R);
MergeSort(R);
show(R);
return 0;
}
```
### 输入样例:
第一行输入一个数n,接下来输入n个数。
```in
7
24 53 45 45 12 24 90
```
### 输出样例:
输出排序结果。
```out
12 24 24 45 45 53 90
```
答案:
第1空:T[low]=R[low]
第2空:MSort(R,S,low,mid)
第3空:MSort(R,S,mid+1,high)
第4空:Merge(S,T,low,mid,high)
```c++
#include
#define MAXSIZE 1000
using namespace std;
typedef struct
{
int key;
char *otherinfo;
}ElemType;
typedef struct
{
ElemType *r;
int length;
}SqList;
void Create_Sq(SqList &L)
{
int i,n;
cin>>n; //输入的值不大于 MAXSIZE
for(i=1;i<=n;i++)
{
cin>>L.r[i].key;
L.length++;
}
}
void show(SqList L)
{
int i;
for(i=1;i<=L.length;i++)
if(i==1)
cout<
cout<<" "<
void Merge(ElemType R[],ElemType T[],int low,int mid,int high)
{
int i,j,k;
i=low; j=mid+1;k=low;
while(i<=mid&&j<=high)
{
if(R[i].key<=R[j].key) T[k++]=R[i++];
else T[k++]=R[j++];
}
while(i<=mid)
T[k++]=R[i++];
while(j<=high)
T[k++]=R[j++];
}
void MSort(ElemType R[],ElemType T[],int low,int high)
{
int mid;
ElemType *S=new ElemType[MAXSIZE];
if(low==high)
@@[T[low]=R[low]](2);
else
{
mid=(low+high)/2;
@@[MSort(R,S,low,mid)](2);
@@[MSort(R,S,mid+1,high)](2);
@@[Merge(S,T,low,mid,high)](2);
}
}
void MergeSort(SqList &L)
{
MSort(L.r,L.r,1,L.length);
}
int main()
{
SqList R;
R.r=new ElemType[MAXSIZE+1];
R.length=0;
Create_Sq(R);
MergeSort(R);
show(R);
return 0;
}
```
### 输入样例:
第一行输入一个数n,接下来输入n个数。
```in
7
24 53 45 45 12 24 90
```
### 输出样例:
输出排序结果。
```out
12 24 24 45 45 53 90
```
答案:
第1空:T[low]=R[low]
第2空:MSort(R,S,low,mid)
第3空:MSort(R,S,mid+1,high)
第4空:Merge(S,T,low,mid,high)