热门标签 | HotTags
当前位置:  开发笔记 > 人工智能 > 正文

谈谈PHP树生成迷宫及A*自动寻路算法

迷宫算法是采用树的深度遍历原理,这样生成的迷宫相当的细,而且死胡同数量相对较少!任意两点之间都存在唯一的一条通路。

迷宫算法是采用树的深度遍历原理,这样生成的迷宫相当的细,而且死胡同数量相对较少!

任意两点之间都存在唯一的一条通路。

至于A*寻路算法是最大众化的一全自动寻路算法

完整代码已上传, http://download.csdn.net/detail/hello_katty/8885779 ,此处做些简单解释,还需要大家自己思考动手。废话不多说,贴上带代码

迷宫生成类:


/** 生成迷宫类
 * @date 2015-07-10
 * @edit http://www.lai18.com
 * @version 1
 **/
class Maze{
    // Maze Create
    private $_w;
    private $_h;
    private $_grids;
    private $_walkHistory;
    private $_walkHistory2;
    private $_targetSteps;
    // Construct
    public function Maze() {
  $this->_w = 6;
  $this->_h = 6;
  $this->_grids = array();
    }
    // 设置迷宫大小
    public function set($width = 6, $height = 6) {
  if ( $width > 0 ) $this->_w = $width;
  if ( $height > 0 ) $this->_h = $height;
  return $this;
    }
    // 取到迷宫
    public function get() {
  return $this->_grids;
    }
    // 生成迷宫
    public function create() {
  $this->_init();
  return $this->_walk(rand(0, count($this->_grids) -1 ));
    }
    // 获取死胡同点
    public function block($n = 0, $rand = false) {
  $l = count($this->_grids);
  for( $i = 1; $i <$l; $i++ ) {
      $v = $this->_grids[$i];
      if ( $v == 1 || $v == 2 || $v == 4 || $v == 8 ) {
    $return[] = $i;
      }
  }
  // 随机取点
  if ( $rand ) shuffle($return);
  if ( $n == 0 ) return $return;
  if ( $n == 1 ) {
      return array_pop($return);
  } else {
      return array_slice($return, 0, $n);
  }
    }
    /**
    生成迷宫的系列函数
    */
    private function _walk($startPos) {
  $this->_walkHistory = array();
  $this->_walkHistory2 = array();
  $curPos = $startPos;
  while ($this->_getNext0() != -1) {
      $curPos = $this->_step($curPos);
      if ( $curPos === false ) break;
  }
  return $this;
    }
    private function _getTargetSteps($curPos) {
  $p = 0;
  $a = array();
  $p = $curPos - $this->_w;
  if ($p > 0 && $this->_grids[$p] === 0 && ! $this->_isRepeating($p)) {
      array_push($a, $p);
  } else {
      array_push($a, -1);
  }
  $p = $curPos + 1;
  if ($p % $this->_w != 0 && $this->_grids[$p] === 0 && ! $this->_isRepeating($p)) {
      array_push($a, $p);
  } else {
      array_push($a, -1);
  }
  $p = $curPos + $this->_w;
  if ($p _grids) && $this->_grids[$p] === 0 && ! $this->_isRepeating($p)) {
      array_push($a, $p);
  } else {
      array_push($a, -1);
  }
  $p = $curPos - 1;
  if (($curPos % $this->_w) != 0 && $this->_grids[$p] === 0 && ! $this->_isRepeating($p)) {
      array_push($a, $p);
  } else {
      array_push($a, -1);
  }
  return $a;
    }
    private function _noStep() {
  $l = count($this->_targetSteps);
  for ($i = 0; $i <$l; $i ++) {
      if ($this->_targetSteps[$i] != -1) return false;
  }
  return true;
    }
    private function _step($curPos) {
  $this->_targetSteps = $this->_getTargetSteps($curPos);
  if ( $this->_noStep() ) {
      if ( count($this->_walkHistory) > 0 ) {
    $tmp = array_pop($this->_walkHistory);
      } else {
    return false;
      }
      array_push($this->_walkHistory2, $tmp);
      return $this->_step($tmp);
  }
  $r = rand(0, 3);
  while ( $this->_targetSteps[$r] == -1) {
      $r = rand(0, 3);
  }
  $nextPos = $this->_targetSteps[$r];
  $isCross = false;
  if ( $this->_grids[$nextPos] != 0)
      $isCross = true;
  if ($r == 0) {
      $this->_grids[$curPos] ^= 1;
      $this->_grids[$nextPos] ^= 4;
  } elseif ($r == 1) {
      $this->_grids[$curPos] ^= 2;
      $this->_grids[$nextPos] ^= 8;
  } elseif ($r == 2) {
      $this->_grids[$curPos] ^= 4;
      $this->_grids[$nextPos] ^= 1;
  } elseif ($r == 3) {
      $this->_grids[$curPos] ^= 8;
      $this->_grids[$nextPos] ^= 2;
  }
  array_push($this->_walkHistory, $curPos);
  return $isCross ? false : $nextPos;
    }
    private function _isRepeating($p) {
  $l = count($this->_walkHistory);
  for ($i = 0; $i <$l; $i ++) {
      if ($this->_walkHistory[$i] == $p) return true;
  }
  $l = count($this->_walkHistory2);
  for ($i = 0; $i <$l; $i ++) {
      if ($this->_walkHistory2[$i] == $p) return true;
  }
  return false;
    }
    private function _getNext0() {
  $l = count($this->_grids);
  for ($i = 0; $i <= $l; $i++ ) {
      if ( $this->_grids[$i] == 0) return $i;
  }
  return -1;
    }
    private function _init() {
  $this->_grids = array();
  for ($y = 0; $y <$this->_h; $y ++) {
      for ($x = 0; $x <$this->_w; $x ++) {
    array_push($this->_grids, 0);
      }
  }
  return $this;
    }
}
A*寻路算法

/** 寻路算法
 * @date 2015-07-10
 * @edit http://www.lai18.com
 * @version 1
 **/
class AStar{
    // A-star
    private $_open;
    private $_closed;
    private $_start;
    private $_end;
    private $_grids;
    private $_w;
    private $_h;
    // Construct
    public function AStar(){
  $this->_w = null;
  $this->_h = null;
  $this->_grids = null;
    }
    public function set($width, $height, $grids) {
  $this->_w = $width;
  $this->_h = $height;
  $this->_grids = $grids;
  return $this;
    }
    // 迷宫中寻路
    public function search($start = false, $end = false) {
  return $this->_search($start, $end);
    }
    /**
    自动寻路 - A-star 算法
       */
    public function _search($start = false, $end = false) {
  if ( $start !== false ) $this->_start = $start;
  if ( $end !== false ) $this->_end = $end;
  $_sh = $this->_getH($start);
  $point['i'] = $start;
  $point['f'] = $_sh;
  $point['g'] = 0;
  $point['h'] = $_sh;
  $point['p'] = null;
  $this->_open[] = $point;
  $this->_closed[$start] = $point;
  while ( 0 _open) ) {
      $minf = false;
      foreach( $this->_open as $key => $maxNode ) {
    if ( $minf === false || $minf > $maxNode['f'] ) {
        $minIndex = $key;
    }
      }
      $nowNode = $this->_open[$minIndex];
      unset($this->_open[$minIndex]);
      if ( $nowNode['i'] == $this->_end ) {
    $tp = array();
    while( $nowNode['p'] !== null ) {
        array_unshift($tp, $nowNode['p']);
        $nowNode = $this->_closed[$nowNode['p']];
    }
    array_push($tp, $this->_end);
    break;
      }
      $this->_setPoint($nowNode['i']);
  }
  $this->_closed = array();
  $this->_open = array();
  return $tp;
    }
    private function _setPoint($me) {
  $point = $this->_grids[$me];
  // 所有可选方向入队列
  if ( $point & 1 ) {
      $next = $me - $this->_w;
      $this->_checkPoint($me, $next);
  }
  if ( $point & 2 ) {
      $next = $me + 1;
      $this->_checkPoint($me, $next);
  }
  if ( $point & 4 ) {
      $next = $me + $this->_w;
      $this->_checkPoint($me, $next);
  }
  if ( $point & 8 ) {
      $next = $me - 1;
      $this->_checkPoint($me, $next);
  }
    }
    private function _checkPoint($pNode, $next) {
  if ( $this->_closed[$next] ) {
      $_g = $this->_closed[$pNode]['g'] + $this->_getG($next);
      if ( $_g <$check['g'] ) {
    $this->_closed[$next]['g'] = $_g;
    $this->_closed[$next]['f'] = $this->_closed[$next]['g'] + $this->_closed[$next]['h'];
    $this->_closed[$next]['p'] = $pNode;
      }
  } else {
      $point['p'] = $pNode;
      $point['h'] = $this->_getH($next);
      $point['g'] = $this->_getG($next);
      $point['f'] = $point['h'] + $point['g'];
      $point['i'] = $next;
      $this->_open[] = $point;
      $this->_closed[$next] = $point;
  }
    }
    private function _getG($point) {
  return abs($this->_start - $point);
    }
    private function _getH($point) {
  return abs($this->_end - $point);
    }
}


推荐阅读
  • 线性Kalman滤波器在多自由度车辆悬架主动控制中的应用研究
    本文探讨了线性Kalman滤波器(LKF)在不同自由度(2、4、7)的车辆悬架系统中进行主动控制的应用。通过详细的仿真分析,展示了LKF在提升悬架性能方面的潜力,并总结了调参过程中的关键要点。 ... [详细]
  • 本文探讨了Hive中内部表和外部表的区别及其在HDFS上的路径映射,详细解释了两者的创建、加载及删除操作,并提供了查看表详细信息的方法。通过对比这两种表类型,帮助读者理解如何更好地管理和保护数据。 ... [详细]
  • 探讨一个显示数字的故障计算器,它支持两种操作:将当前数字乘以2或减去1。本文将详细介绍如何用最少的操作次数将初始值X转换为目标值Y。 ... [详细]
  • 本文详细介绍了Java编程语言中的核心概念和常见面试问题,包括集合类、数据结构、线程处理、Java虚拟机(JVM)、HTTP协议以及Git操作等方面的内容。通过深入分析每个主题,帮助读者更好地理解Java的关键特性和最佳实践。 ... [详细]
  • 本文探讨如何设计一个安全的加密和验证算法,确保生成的密码具有高随机性和低重复率,并提供相应的验证机制。 ... [详细]
  • 深入解析:手把手教你构建决策树算法
    本文详细介绍了机器学习中广泛应用的决策树算法,通过天气数据集的实例演示了ID3和CART算法的手动推导过程。文章长度约2000字,建议阅读时间5分钟。 ... [详细]
  • 在金融和会计领域,准确无误地填写票据和结算凭证至关重要。这些文件不仅是支付结算和现金收付的重要依据,还直接关系到交易的安全性和准确性。本文介绍了一种使用C语言实现小写金额转换为大写金额的方法,确保数据的标准化和规范化。 ... [详细]
  • 在给定的数组中,除了一个数字外,其他所有数字都是相同的。任务是找到这个唯一的不同数字。例如,findUniq([1, 1, 1, 2, 1, 1]) 返回 2,findUniq([0, 0, 0.55, 0, 0]) 返回 0.55。 ... [详细]
  • 本文探讨了卷积神经网络(CNN)中感受野的概念及其与锚框(anchor box)的关系。感受野定义了特征图上每个像素点对应的输入图像区域大小,而锚框则是在每个像素中心生成的多个不同尺寸和宽高比的边界框。两者在目标检测任务中起到关键作用。 ... [详细]
  • 网络攻防实战:从HTTP到HTTPS的演变
    本文通过一系列日记记录了从发现漏洞到逐步加强安全措施的过程,探讨了如何应对网络攻击并最终实现全面的安全防护。 ... [详细]
  • 本文深入探讨了Linux系统中网卡绑定(bonding)的七种工作模式。网卡绑定技术通过将多个物理网卡组合成一个逻辑网卡,实现网络冗余、带宽聚合和负载均衡,在生产环境中广泛应用。文章详细介绍了每种模式的特点、适用场景及配置方法。 ... [详细]
  • 本文探讨了如何在给定整数N的情况下,找到两个不同的整数a和b,使得它们的和最大,并且满足特定的数学条件。 ... [详细]
  • 深度学习理论解析与理解
    梯度方向指示函数值增加的方向,由各轴方向的偏导数综合而成,其模长表示函数值变化的速率。本文详细探讨了导数、偏导数、梯度等概念,并结合Softmax函数、卷积神经网络(CNN)中的卷积计算、权值共享及池化操作进行了深入分析。 ... [详细]
  • 机器学习中的相似度度量与模型优化
    本文探讨了机器学习中常见的相似度度量方法,包括余弦相似度、欧氏距离和马氏距离,并详细介绍了如何通过选择合适的模型复杂度和正则化来提高模型的泛化能力。此外,文章还涵盖了模型评估的各种方法和指标,以及不同分类器的工作原理和应用场景。 ... [详细]
  • 自学编程与计算机专业背景者的差异分析
    本文探讨了自学编程者和计算机专业毕业生在技能、知识结构及职业发展上的不同之处,结合实际案例分析两者的优势与劣势。 ... [详细]
author-avatar
我爱看电视OK
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有