2012年8月22日
摘要: 二分查找需要数组有序,效率为O(logn) 1 <?php 2 #二分查找 3 function binarySearch(Array $arr, $target) { 4 $low = 0; 5 $high = count($arr) - 1; 6 7 while($low <= $high) { 8 $mid = floor(($low + $high) / 2); 9 #找到元素10 if($arr[$mid] == $target) ... 阅读全文
posted @ 2012-08-22 01:58 ZimZz 阅读(8530) 评论(0) 推荐(1) 编辑