中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

使用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

平顺县| 宜良县| 扶沟县| 镇康县| 孝昌县| 东至县| 安塞县| 衡东县| 平安县| 临沭县| 赤水市| 灌云县| 仲巴县| 阳原县| 伊川县| 博湖县| 衡水市| 南康市| 东源县| 云阳县| 凯里市| 察隅县| 固原市| 社会| 车险| 水富县| 雅安市| 仁化县| 龙南县| 二连浩特市| 察哈| 平果县| 公主岭市| 科技| 大庆市| 沿河| 寻乌县| 长武县| 乌审旗| 长汀县| 新丰县|