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

溫馨提示×

溫馨提示×

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

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

PHP如何實現螞蟻爬桿路徑算法

發布時間:2021-06-25 14:04:41 來源:億速云 閱讀:103 作者:小新 欄目:開發技術

這篇文章主要介紹了PHP如何實現螞蟻爬桿路徑算法,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

具體如下:

<?php
/**
 * 有一根27厘米的細木桿,在第3厘米、7厘米、11厘米、17厘米、23厘米這五個位置上各有一只螞蟻。
 * 木桿很細,不能同時通過一只螞蟻。開始 時,螞蟻的頭朝左還是朝右是任意的,它們只會朝前走或調頭,
 * 但不會后退。當任意兩只螞蟻碰頭時,兩只螞蟻會同時調頭朝反方向走。假設螞蟻們每秒鐘可以走一厘米的距離。
 * 編寫程序,求所有螞蟻都離開木桿 的最小時間和最大時間。
 */
function add2($directionArr, $count, $i) {
 if(0 > $i) { // 超出計算范圍
  return $directionArr;
 }
 if(0 == $directionArr[$i]) { // 當前位加1
  $directionArr[$i] = 1;
  return $directionArr;
 }
 $directionArr[$i] = 0;
 return add2($directionArr, $count, $i - 1); // 進位
}
$positionArr = array( // 所在位置
 3,
 7,
 11,
 17,
 23
);
function path($positionArr) { // 生成測試路徑
 $pathCalculate = array();
 $count = count($positionArr);
 $directionArr = array_fill(0, $count, 0); // 朝向
 $end = str_repeat('1', $count);
 while (true) {
  $path = implode('', $directionArr);
  $pathArray = array_combine($positionArr, $directionArr);
  $total = calculate($positionArr, $directionArr);
  $pathCalculate['P'.$path] = $total;
  if($end == $path) { // 遍歷完成
   break;
  }
  $directionArr = add2($directionArr, $count, $count - 1);
 }
 return $pathCalculate;
}
function calculate($positionArr, $directionArr) {
 $total = 0; // 總用時
 $length = 27; // 木桿長度
 while ($positionArr) {
  $total++; // 步增耗時
  $nextArr = array(); // 下一步位置
  foreach ($positionArr as $key => $value) {
   if(0 == $directionArr[$key]) {
    $next = $value - 1; // 向0方向走一步
   } else {
    $next = $value + 1; // 向1方向走一步
   }
   if(0 == $next) { // 在0方向走出
    continue;
   }
   if($length == $next) { // 在1方向走出
    continue;
   }
   $nextArr[$key] = $next;
  }
  $positionArr = $nextArr; // 將$positionArr置為臨時被查找數組
  foreach ($nextArr as $key => $value) {
   $findArr = array_keys($positionArr, $value);
   if(count($findArr) < 2) { // 沒有重合的位置
    continue ;
   } 
   foreach ($findArr as $findIndex) {
    $directionArr[$findIndex] = $directionArr[$findIndex] ? 0 : 1; // 反向處理
    unset($positionArr[$findIndex]); // 防止重復查找計算
   }
  }
  $positionArr = $nextArr; // 將$positionArr置為下一步結果數組
 }
 return $total;
}
$pathCalculate = path($positionArr);
echo '<pre>calculate-';
print_r($pathCalculate);
echo 'sort-';
asort($pathCalculate);
print_r($pathCalculate);

感謝你能夠認真閱讀完這篇文章,希望小編分享的“PHP如何實現螞蟻爬桿路徑算法”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

php
AI

田东县| 三门峡市| 黄浦区| 西昌市| 巴塘县| 蓬安县| 乌拉特后旗| 三河市| 甘洛县| 石首市| 固镇县| 拜城县| 枣阳市| 积石山| 山东省| 吉安市| 孟连| 老河口市| 石楼县| 济阳县| 博罗县| 红河县| 吉安市| 高青县| 潮州市| 仁怀市| 聂荣县| 台湾省| 怀来县| 灯塔市| 安平县| 灵丘县| 错那县| 潜江市| 江阴市| 通辽市| 武山县| 安丘市| 宜城市| 内乡县| 洛扎县|