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


Posted in PHP onDecember 03, 2015

本文实例讲述了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 相关文章推荐
PHP 增加了对 .ZIP 文件的读取功能
Oct 09 PHP
require(),include(),require_once()和include_once()区别
Mar 27 PHP
PHP集成FCK的函数代码
Sep 27 PHP
php下统计用户在线时间的一种尝试
Aug 26 PHP
php写的带缓存数据功能的mysqli类
Sep 06 PHP
yii2分页之实现跳转到具体某页的实例代码
Jun 02 PHP
php 生成签名及验证签名详解
Oct 26 PHP
thinkphp5 URL和路由的功能详解与实例
Dec 26 PHP
PHP的微信支付接口使用方法讲解
Mar 08 PHP
TP5框架请求响应参数实例分析
Oct 17 PHP
PhpStorm+xdebug+postman调试技巧分享
Sep 15 PHP
PHP执行系统命令函数实例讲解
Mar 03 PHP
PHP实现QQ空间自动回复说说的方法
Dec 02 #PHP
如何在旧的PHP系统中使用PHP 5.3之后的库
Dec 02 #PHP
thinkphp微信开发(消息加密解密)
Dec 02 #PHP
thinkphp微信开之安全模式消息加密解密不成功的解决办法
Dec 02 #PHP
PHP接收json 并将接收数据插入数据库的实现代码
Dec 01 #PHP
实例讲解yii2.0在php命令行中运行的步骤
Dec 01 #PHP
PHP简单的MVC框架实现方法
Dec 01 #PHP
You might like
常用表单验证类,有了这个,一般的验证就都齐了。
2006/12/06 PHP
php编程每天必学之表单验证
2016/03/01 PHP
iis6+javascript Add an Extension File
2007/06/13 Javascript
css把超出的部分显示为省略号的方法兼容火狐
2008/07/23 Javascript
javascript 写类方式之十
2009/07/05 Javascript
jquery 简单的进度条实现代码
2010/03/11 Javascript
Javascript setInterval的两种调用方法(实例讲解)
2013/11/29 Javascript
js清理Word格式示例代码
2014/02/13 Javascript
浅谈jquery事件处理
2015/04/24 Javascript
js实现带圆角的两级导航菜单效果代码
2015/08/24 Javascript
JavaScript实现Java中Map容器的方法
2016/10/09 Javascript
JS二分查找算法详解
2017/11/01 Javascript
vue响应式更新机制及不使用框架实现简单的数据双向绑定问题
2019/06/27 Javascript
原生javascript制作贪吃蛇小游戏的方法分析
2020/02/26 Javascript
基于javascript实现日历功能原理及代码实例
2020/05/07 Javascript
小程序实现上下切换位置
2020/11/16 Javascript
python类继承用法实例分析
2014/10/10 Python
Python实现栈的方法
2015/05/26 Python
python提取图像的名字*.jpg到txt文本的方法
2018/05/10 Python
python使用time、datetime返回工作日列表实例代码
2019/05/09 Python
Python学习笔记之变量、自定义函数用法示例
2019/05/28 Python
python3+PyQt5 创建多线程网络应用-TCP客户端和TCP服务器实例
2019/06/17 Python
PyTorch中Tensor的维度变换实现
2019/08/18 Python
Python模拟FTP文件服务器的操作方法
2020/02/18 Python
python和C++共享内存传输图像的示例
2020/10/27 Python
HTML5 通过Vedio标签实现视频循环播放的示例代码
2020/08/05 HTML / CSS
经典c++面试题二
2015/08/14 面试题
中专自我鉴定范文
2013/10/16 职场文书
2013年保送生自荐信格式
2013/11/20 职场文书
国际贸易毕业生求职信
2014/07/20 职场文书
弄虚作假心得体会
2014/09/10 职场文书
教师节寄语2015
2015/03/23 职场文书
义卖募捐活动总结
2015/05/09 职场文书
入党转正介绍人意见
2015/06/03 职场文书
2016秋季运动会开幕词
2016/03/04 职场文书
Python自动化工具之实现Excel转Markdown表格
2022/04/08 Python