标签:nbsp turn count 剑指offer for 时长 数字 循环 反思
《剑指offer》
easy
//数组中的逆序对 public static int InversePairs(int[] array){ if(array==null||array.length<=1) return 0; int[] copy = new int[array.length]; for(int i=0;i<array.length;i++){ copy[i] = array[i]; } return mergeCount(array, copy, 0, array.length-1); } public static int mergeCount(int[] array, int[] copy, int start, int end){ if(start==end){ copy[start] = array[start]; return 0; } int mid = (start+end)>>1; int leftCount = mergeCount(copy, array, start, mid); int rightCount = mergeCount(copy, array, mid+1, end); int i = mid;//i初始化为前半段最后一个数字的下标 int j = end;//j初始化为后半段最后一个数字的下标 int index = end;//辅助数组复制的数组的最后一个数字的下标 int count = 0;//计数--逆序对的数目 while(i>=start&&j>=mid+1){ if(array[i]>array[j]){ copy[index--] = array[i--]; count += j-mid; }else{ copy[index--] = array[j--]; } } for(;i>=start;i--){ copy[index--] = array[i]; } for(;j>=mid+1;j--){ copy[index--] = array[j]; } return leftCount+rightCount+count; }
1.不会用归并排序,没有想到怎么样最快速实现这个想法
2.暴利的循环解题肯定是没有好处的,要注意思考和现有的什么算法有异曲同工的地方
2h
标签:nbsp turn count 剑指offer for 时长 数字 循环 反思
原文地址:https://www.cnblogs.com/captain-dl/p/10555556.html