标签:ase sam i++ count bsp str cto class ret
有一组数,对于其中任意两个数组,若前面一个大于后面一个数字,则这两个数字组成一个逆序对。请设计一个高效的算法,计算给定数组中的逆序对个数。
给定一个int数组A和它的大小n,请返回A中的逆序对个数。保证n小于等于5000。
[1,2,3,4,5,6,7,0],8
返回:7
class AntiOrder { public: int count(vector<int> A, int n) { // write code here int res = 0; int i ,j; if(n < 2) return n; for(int i = 0;i < n;i++){ for(int j = 0;j < n-i-1;j++){ if(A[j] > A[j+1]){ swap(A[j],A[j+1]); res++; } } } return res; } };
标签:ase sam i++ count bsp str cto class ret
原文地址:http://www.cnblogs.com/xiuxiu55/p/6746673.html