合并排序

#include<iostream>
#include<cstdlib>
#include <conio.h>

using namespace std;

template<class type>
void merge(type c[],type d[],int l,int m,int r)
{
   int i,j,k;
       k=i=l;
       j=m+1;
   while((i<=m)&&(j<=r))
   {
     if(c[i]<=c[j])
      d[k++]=c[i++];
     else
      d[k++]=c[j++];
   }
   if(i>m)
    for(int q=j;q<=r;q++)
      d[k++]=c[q];
   else
    for(int q=i;q<=m;q++)
      d[k++]=c[q];
};

template<class type>
void Mergersort(type a[],int left,int right,int n)
{
  int i=0;
  type *b=new type[n];
  if(left<right)
  {
    i=(left+right)/2;
    Mergersort(a,left,i,n);
    Mergersort(a,i+1,right,n);
    merge(a,b,left,i,right);
    for(i=left;i<=right;i++)
      a[i]=b[i];
  }
}
int main()
{
    int n=0,i=0,p=0,r=0;
    cout<<"要排序的数的规模"<<endl;
    cin>>n;
    int *a=new int[n];
    cout<<"输入要排序的数:"<<endl;
    for(i=0;i<n;i++)cin>>a[i];
    p=0;r=n-1;
    Mergersort(a,p,r,n);
    cout<<"输出排好的数:"<<endl;
    for(i=0;i<n;i++)cout<<a[i]<<' ';
    cout<<endl;
    getch();
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值