用二分法查找在数组a[]中指定的元素key
public class BinarySearch {
public static void main(String[] args) {
int[] a = { 2, 4, 8, 26, 36, 49 };
bS(a, 0, a.length - 1, 33);
}
/**
*
* @param a 要在哪个数组里面查找
* @param low 从哪个位置开始查找 low 和 hig 表示的是待查找区间
* @param hig 截至到哪个位置
* @param key 待查找的值
*/
public static void bS(int[] a, int low, int hig, int key) {
int mid = (low + hig) / 2;
// 二分法的要求是数组一开始就是排序好的
if (low > hig) {//说明两个下标往中间走 相互错过了,就表示没有找到这个key
Syste
public class BinarySearch {
public static void main(String[] args) {
int[] a = { 2, 4, 8, 26, 36, 49 };
bS(a, 0, a.length - 1, 33);
}
/**
*
* @param a 要在哪个数组里面查找
* @param low 从哪个位置开始查找 low 和 hig 表示的是待查找区间
* @param hig 截至到哪个位置
* @param key 待查找的值
*/
public static void bS(int[] a, int low, int hig, int key) {
int mid = (low + hig) / 2;
// 二分法的要求是数组一开始就是排序好的
if (low > hig) {//说明两个下标往中间走 相互错过了,就表示没有找到这个key
Syste