package search;
/**
* 双调查找
* @author kuhuf
* Attention: the array's length must greater than 2
* Attention: the array must be ordered
*/
public class BitonicSearch {
public static int find(int[] a, int key){
int lo = 0;
int hi = a.length-1;
int mid = -1;
while(lo <= hi){
mid = (lo + hi) / 2;
if(a[mid] > a[mid - 1]){
int index = BinarySearch.rank(key, a, lo, mid);
if(index != -1) return index;
lo = mid + 1;
}else if(a[mid] > a[mid + 1]){
int index = BinarySearch.rank(key, a, mid, hi);
if(index != -1) return index;
hi = mid - 1;
}
}
return -1;
}
/**
* 1. 找到极值点(极值点也是用二分法找到的)(extreme point, binary method)
* 2. 根据极值点将数组分为两部分,分别进行二分搜索,查找key值
* according to the extreme point, divide the array into two parts
* use Binary search respectively find the key value
* @param a
* @param key
* @return
*/
public static int find2(int[] a, int key){
int lo = 0;
int hi = a.length-1;
int mid = -1;
while(lo <= hi){
mid = (lo + hi) / 2;
if(a[mid] > a[mid - 1]){
lo = mid + 1;
}else{
hi = mid - 1;
}
}
int left = BinarySearch.rank(key, a, 0, mid);
int right = BinarySearch.rank(key, a, mid, a.length-1);
return left > right ? left : right;
}
public static void main(String[] args) {
int[] a = {-1, 2,3, 4,5};
System.out.println( find2(a, 3) );
}
}
1.4.20 BitonicSearch
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 【蝴蝶效应】 蝴蝶效应:上个世纪70年代,美国一个名叫洛伦兹的气象学家在解释空气系统理论时说,亚马逊雨林一只蝴蝶...
- 小学语文修改病句的方法 修改病句是小学语文考试中常见的题型,在修改病句之前,我们应该清晰的了解有哪些病句现象,下面...
- 【昨日三句话】 1、说到和做到真差距很大,自己就是那个经常说道,却做不到的人,或者很迟才做到的人。 2、我只说我做...