PHP實現螞蟻爬杆路徑演算法

來源:互聯網
上載者:User
本文主要介紹了PHP實現的螞蟻爬杆路徑演算法代碼,以完整執行個體形式分析了螞蟻爬杆路徑演算法的原理與實現方法,涉及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實現的隨機紅包演算法

PHP實現迪菲赫爾曼金鑰交換(Diffie–Hellman)演算法

PHP產生迷宮及自動尋路演算法詳解

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.