二分查找针对的是一个有序的数据集合,时间复杂度为O(logn)
$data = [8,11,19,23,33,33,33,45,55,67,98];
普通的二分查找function binarySearch(array $data,$fi
2018-03-04