剑指offer: 数组中的逆序对
Posted 哈哈哈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer: 数组中的逆序对相关的知识,希望对你有一定的参考价值。
1. 最简单的思路,对每个值,遍历与其逆序的数组对;但时间复杂度太高;
2. 归并排序的思路:
先将数组分隔成子数组,先统计出子数组内的逆序对的数目,然后统计两个相邻子数组之间的逆序对的数目;
int InversePairsCore(int *data, int * copy, int start, int end) { //递归介绍条件,只剩一个元素 if(start==end) { copy[start]=data[start]; return 0; } int length=(end-start)/2; int left=InversePairsCore(copy, data, start, start+length); int right=InversePairsCore(copy,data, start+length+1,end); int i=start+length;//前半段最后一个数字的下标 int j=end;// 后半段最后一个下标 int indexCopy=end; int count=0; while(i>=start&& j>=start+length+1) { if(data[i]>data[j]) { copy[indexCopy--]=data[i--]; count+=j-start-length;//右侧有j-start-length个元素,小于data[i] if(count>=1000000007) count%=1000000007; } else { copy[indexCopy--]=data[j--];//右侧元素大,,不存在逆序 } } for(;i>=start;i--) { copy[indexCopy--]=data[i]; } for(;j>=start+length+1;j--) { copy[indexCopy--]=data[j]; } return (left+right+count)%1000000007; } int InversePairs(int* data, int length) { if(data==NULL||length<0) return 0; int * copy=new int[length]; for(int i=0;i<length;++i) copy[i]=data[i]; int count=InversePairsCore(data, copy,0, length-1); delete [] copy; return count; }
以上是关于剑指offer: 数组中的逆序对的主要内容,如果未能解决你的问题,请参考以下文章