PHP實現折半(二分)尋找演算法

來源:互聯網
上載者:User
剛才將排序和尋找演算法放在一起,感覺不方便閱讀,因此將尋找演算法拿出來,供大家討論php基於快速排序實現二分尋找
/** * Description:php實現二分尋找演算法的類 * @author wzy */class binary_search{public $arr;public $key;function __construct($arr,$key){//這裡初始化的數組已經是有序數組$this->arr=$arr;$this->key=$key;}function binarysearch(){$start=0;$end=count($this->arr)-1;while($start<=$end){//mid的取值可以為上整數或者下整數$mid=ceil(($start+$end)/2);//$mid=($start+$end)>>1;//$mid=intval(($start+$end)/2);if($this->arr[$mid]<$this->key){$start=$mid+1;}else if($this->arr[$mid]>$this->key){$end=$mid-1;}else{return $mid;}}}}
可能大家還會遇到這種情況,數組中的元素有重複資料,需要返回的是重複資料中的第一個元素的位置,例如$arr=array(1,2,3,4,5,6,6,6,6,7,8);尋找6這個元素時返回的位置應該為5,而不是其他(下標從0開始計數),這樣需要在返回的mid進行判斷,代碼如下:
/** * Description:php實現二分尋找演算法的類 * @author wzy */class binary_search{public $arr;public $key;function __construct($arr,$key){//這裡初始化的數組已經是有序數組$this->arr=$arr;$this->key=$key;}function binarysearch(){$start=0;$end=count($this->arr)-1;while($start<=$end){//mid的取值可以為上整數或者下整數$mid=ceil(($start+$end)/2);//$mid=($start+$end)>>1;//$mid=intval(($start+$end)/2);if($this->arr[$mid]<$this->key){$start=$mid+1;}else if($this->arr[$mid]>$this->key){$end=$mid-1;}else{//返回第一個匹配的元素for($i=$mid-1;$i>=0;$i--){if($this->arr[$i]==$this->key){$mid=$i;}else{break;}}return $mid;}}}}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.