亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用PHP怎么實現一個折半查詢算法

發布時間:2021-04-09 17:57:55 來源:億速云 閱讀:145 作者:Leah 欄目:開發技術

這篇文章給大家介紹使用PHP怎么實現一個折半查詢算法,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

<?php
header("Content-type: text/html; charset=utf-8");
/* 折半查詢算法--不用遞歸 */
function qSort($data = array(), $x = 0){
 $startIndex = 0;    // 開始索引
 $endIndex = count($data) - 1; // 結束索引
 $index = 0;
 $number = 0;     // 計數器
 do{
  if($endIndex > $startIndex){
   $searchIndex = ceil(($endIndex - $startIndex) / 2);
  }else if($endIndex == $startIndex){
   $searchIndex = $endIndex;
  }else{
   $index = -1;
   break;
  }
  $searchIndex += ($startIndex - 1);
  echo '檢索范圍:'.$startIndex.' ~ '.$endIndex.'<br>檢索位置:'.$searchIndex.'檢索值為:'.$data[$searchIndex];
  echo '<br>=======================<br><br>';
  if($data[$searchIndex] == $x){
   $index = $searchIndex;
   break;
  }else if($x > $data[$searchIndex]){
   $startIndex = $searchIndex + 1;
  }else{
   $endIndex = $searchIndex - 1;
  }
  $number++;
 }while($number < count($data));
 return $index;
}
/* 折半查詢算法--使用遞歸 */
function sSort($data, $x, $startIndex, $endIndex){
 if($endIndex > $startIndex){
  $searchIndex = ceil(($endIndex - $startIndex) / 2);
 }else if($endIndex == $startIndex){
  $searchIndex = $endIndex;
 }else{
  return -1;
 }
 $searchIndex += ($startIndex - 1);
 echo '檢索范圍:'.$startIndex.' ~ '.$endIndex.'<br>檢索位置:'.$searchIndex.'檢索值為:'.$data[$searchIndex];
 echo '<br>=======================<br><br>';
 if($data[$searchIndex] == $x){
  return $searchIndex;
 }else if($x > $data[$searchIndex]){
  $startIndex = $searchIndex + 1;
  return sSort($data, $x, $startIndex, $endIndex);
 }else{
  $endIndex = $searchIndex - 1;
  return sSort($data, $x, $startIndex, $endIndex);
 }
}
$data = array(1, 3, 4, 6, 9, 11, 12, 13, 15, 20, 21, 25, 33, 34, 35, 39, 41, 44);
$index = qSort($data, 11);      // 不用遞歸的排序方法
$index = sSort($data, 11, 0, count($data) - 1); // 使用遞歸的排序方法
echo '結果:'.$index;

運行結果:

使用PHP怎么實現一個折半查詢算法

關于使用PHP怎么實現一個折半查詢算法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

平乡县| 新源县| 军事| 永春县| 建阳市| 广元市| 通江县| 上栗县| 开原市| 江门市| 讷河市| 临夏市| 德兴市| 乌苏市| 林口县| 汉川市| 双江| 崇明县| 宁阳县| 同心县| 文水县| 株洲市| 兴业县| 布尔津县| 昆山市| 青州市| 长葛市| 图木舒克市| 青阳县| 垦利县| 翼城县| 福海县| 岳阳县| 闵行区| 微博| 仁布县| 雅安市| 老河口市| 汝阳县| 新竹市| 廉江市|