91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

泰州市| 手游| 临朐县| 五河县| 化州市| 沅陵县| 台前县| 资源县| 长阳| 拉萨市| 原阳县| 体育| 邛崃市| 翁牛特旗| 资源县| 翼城县| 西畴县| 永年县| 辰溪县| 夹江县| 黄陵县| 秦安县| 东丽区| 固镇县| 二连浩特市| 平山县| 绥滨县| 山东省| 鹰潭市| 通化市| 瑞安市| 卓资县| 安宁市| 澄江县| 东源县| 漠河县| 文昌市| 禹城市| 台北县| 万安县| 六枝特区|