/**
* 二分查找只能在有序数组里使用
* 二分查找法 一
* @param a 整个数组
* @param x 要查找的数据
* @return
*/
public static boolean tSearch(int a[],int x){
boolean f =false;
int length=a.length;
int low =0;
int high=length-1;
int mind;
while (low<=high){
mind=a[(low+high)/2];
if (mind<x)
low=a[(low+high)/2+1];
else if (mind>x)
high=a[(low+high)/2-1];
else if (mind==x){
f =true;
break;
}
}
return f;
}
/**
* 二分查找法 二
* @param a 整个数组
* @param low 每次查找的起始位置
* @param high 每次查找的结束位置
* @param x 要查找的数据
* @return
*/
public static boolean tSearchs(int a[],int low,int high,int x ){
boolean f=false;
if (low<=high){
if (x<a[(low+high)/2]){
f=tSearchs(a,low,(low+high)/2-1,x);
}else if (x>a[(low+high)/2]){
f = tSearchs(a,(low+high)/2+1,high,x);
} else if (x==a[(low+high)/2]){
f=true;
}
}
return f;
}
网友评论