当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP实现的蚂蚁爬杆路径算法代码

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-28 10:12:30 浏览: 评论:0 

这篇文章主要介绍了PHP实现的蚂蚁爬杆路径算法代码,以完整实例形式分析了蚂蚁爬杆路径算法的原理与实现方法,涉及php数值计算与数组操作的相关技巧,需要的朋友可以参考下。

本文实例讲述了PHP实现的蚂蚁爬杆路径算法代码,分享给大家供大家参考,具体如下:

  1. <?php 
  2. /** 
  3.  * 有一根27厘米的细木杆,在第3厘米、7厘米、11厘米、17厘米、23厘米这五个位置上各有一只蚂蚁。 
  4.  * 木杆很细,不能同时通过一只蚂蚁。开始 时,蚂蚁的头朝左还是朝右是任意的,它们只会朝前走或调头, 
  5.  * 但不会后退。当任意两只蚂蚁碰头时,两只蚂蚁会同时调头朝反方向走。假设蚂蚁们每秒钟可以走一厘米的距离。 
  6.  * 编写程序,求所有蚂蚁都离开木杆 的最小时间和最大时间。 
  7.  */ 
  8. function add2($directionArr$count$i) { 
  9.  if(0 > $i) { // 超出计算范围 
  10.   return $directionArr
  11.  } 
  12.  if(0 == $directionArr[$i]) { // 当前位加1 
  13.   $directionArr[$i] = 1; 
  14.   return $directionArr
  15.  } 
  16.  $directionArr[$i] = 0; 
  17.  return add2($directionArr$count$i - 1); // 进位 
  18. $positionArr = array// 所在位置 
  19.  3, 
  20.  7, 
  21.  11, 
  22.  17, 
  23.  23 
  24. ); 
  25. function path($positionArr) { // 生成测试路径 
  26.  $pathCalculate = array(); 
  27.  $count = count($positionArr); 
  28.  $directionArr = array_fill(0, $count, 0); // 朝向 
  29.  $end = str_repeat('1'$count); 
  30.  while (true) { 
  31.   $path = implode(''$directionArr); 
  32.   $pathArray = array_combine($positionArr$directionArr); 
  33.   $total = calculate($positionArr$directionArr); 
  34.   $pathCalculate['P'.$path] = $total
  35.   if($end == $path) { // 遍历完成 
  36.    break
  37.   } 
  38.   $directionArr = add2($directionArr$count$count - 1); 
  39.  } 
  40.  return $pathCalculate
  41. function calculate($positionArr$directionArr) { 
  42.  $total = 0; // 总用时 
  43.  $length = 27; // 木杆长度 
  44.  while ($positionArr) { 
  45.   $total++; // 步增耗时 
  46.   $nextArr = array(); // 下一步位置 
  47.   foreach ($positionArr as $key => $value) { 
  48.    if(0 == $directionArr[$key]) { 
  49.     $next = $value - 1; // 向0方向走一步 
  50.    } else { 
  51.     $next = $value + 1; // 向1方向走一步 
  52.    } 
  53.    if(0 == $next) { // 在0方向走出 
  54.     continue
  55.    } 
  56.    if($length == $next) { // 在1方向走出 
  57.     continue
  58.    } 
  59.    $nextArr[$key] = $next
  60.   } 
  61.   $positionArr = $nextArr// 将$positionArr置为临时被查找数组 
  62.   foreach ($nextArr as $key => $value) { 
  63.    $findArr = array_keys($positionArr$value); 
  64.    if(count($findArr) < 2) { // 没有重合的位置 
  65.     continue ; 
  66.    }  
  67.    foreach ($findArr as $findIndex) { 
  68.     $directionArr[$findIndex] = $directionArr[$findIndex] ? 0 : 1; // 反向处理 
  69.     unset($positionArr[$findIndex]); // 防止重复查找计算 
  70.    } 
  71.   } 
  72.   $positionArr = $nextArr// 将$positionArr置为下一步结果数组 
  73.  } 
  74.  return $total
  75. $pathCalculate = path($positionArr); 
  76. echo '<pre>calculate-'
  77. print_r($pathCalculate); 
  78. echo 'sort-'
  79. asort($pathCalculate); 
  80. print_r($pathCalculate); 

希望本文所述对大家PHP程序设计有所帮助。

Tags: PHP蚂蚁爬杆路径算法

分享到: