赞
踩
public static int binarysearch(int[] num,int x){
int L=0;
int R=num.length-1;
while(L<=R) {
int mid=L+(R-L)/2;//不要用(L+R)/2,有可能溢出int
if(x==num[mid]) return mid;
else if(x>num[mid]) L=mid+1;
else R=mid-1;
}
return -1;
}
2. 归并排序
归并排序(MERGE-SORT)是建立在归并操作上的一种有效的排序算法,该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。将已有序的子序列合并,得到完全有序的序列。步骤如下:
1)申请空间,使其大小为两个已经排序序列之和,该空间用来存放合并后的序列;
2)设定两个指针,最初位置分别为两个已经排序序列的起始位置;
3)比较两个指针所指向的元素,选择较小的元素放入到合并空间,并移动指针到下一位置;
4) 重复步骤 3 直到某一指针达到序列尾;
5)将另一序列剩下的所有元素直接复制到合并序列尾。
public static void GB(int[] arr,int start,int end,int[] help) {
if(start<end) {
int mid=start+(end-start)/2;
GB(arr,start,mid,help);
GB(arr,mid+1,end,help);
HB(arr,start,mid,end,help);
}
}
public static void HB(int[] arr, int start
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。