排序算法总结(三)逆序对

求数组中的逆序对

#include<iostream>
using namespace std;
int MergeArray(int r[],int s,int m,int e,int temp[]){
	int i=m,j=e,count=0,k=0;
	while(i>=s&&j>=m+1){
		if (r[i]>r[j]){
			temp[k]=r[i];
			k++;
			count=count+(j-m);
			i--;
		}
		else if (r[i]<=r[j]){
			temp[k]=r[j];
			k++;
			j--;
		}
	}
	while(i>=s)//表示前半段数组中还有元素未放入临时数组
    {
        temp[k++]=r[i--];
    }

    while(j>m)
    {
        temp[k++]=r[j--];
    }
	for(int z=0;z<k;z++){
		r[e-z]=temp[z];
	}
	return count;
}
int Nixudui(int r[],int s,int e,int temp[]){
	int count=0;
	if(s<e){//递归的界限
		int m=(s+e)/2;
		count+=Nixudui(r,s,m,temp);
		count+=Nixudui(r,m+1,e,temp);
		count+=MergeArray(r,s,m,e,temp);
	}
	return count;
}
void main(){
	int A[4]={7,5,6,4};
	int *temp=new int[4];
	int rs;
	rs=Nixudui(A,0,3,temp);
	delete[] temp;
	cout<<rs<<endl;
	system("pause");
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值