Bootstrap

c++二分查找算法

二分查找
1,数据必须为有序数列
2,查找过程设置两个指针,low,high, 如果目标数据大于low和high中间的数,则low=mid+1, 如果目标数据小于low和high中间的数,则high=mid-1,之后个更新mid=(low+high-1)/2

#include <iostream>
#include <math.h>
using namespace std;

int binarySearch(int *array,int len,int target)
;