Python解决走迷宫问题算法示例


Posted in Python onJuly 27, 2018

本文实例讲述了Python解决走迷宫问题算法。分享给大家供大家参考,具体如下:

问题:

输入n * m 的二维数组 表示一个迷宫
数字0表示障碍 1表示能通行
移动到相邻单元格用1步

思路:

深度优先遍历,到达每一个点,记录从起点到达每一个点的最短步数

初始化案例:

1   1   0   1   1
1   0   1   1   1
1   0   1   0   0
1   0   1   1   1
1   1   1   0   1
1   1   1   1   1

1 把图周围加上一圈-1 , 在深度优先遍历的时候防止出界
2 把所有障碍改成-1,把能走的地方改成0
3 每次遍历经历某个点的时候,如果当前节点值是0 把花费的步数存到节点里
                            如果当前节点值是-1 代表是障碍 不遍历它
                            如果走到当前节点花费的步数比里面存的小,就修改它

修改后的图:

-1      -1   -1  -1   -1   -1      -1
-1      0    0   -1    0    0      -1
-1      0   -1    0    0    0      -1
-1      0   -1    0   -1   -1      -1
-1      0   -1    0    0    0      -1
-1      0    0    0   -1    0      -1
-1      0    0    0    0    0      -1
-1      -1   -1  -1   -1   -1      -1

外周的-1 是遍历的时候防止出界的

默认从左上角的点是入口 右上角的点是出口

Python代码:

# -*- coding:utf-8 -*-
def init():
  global graph
  graph.append([-1,  -1, -1, -1, -1, -1,  -1])
  graph.append([-1,  0, 0, -1, 0, 0,  -1])
  graph.append([-1,  0, -1, 0, 0, 0,  -1])
  graph.append([-1,  0, -1, 0, -1, -1,  -1])
  graph.append([-1,  0, -1, 0, 0, 0,  -1])
  graph.append([-1,  0, 0, 0, -1, 0,  -1])
  graph.append([-1,  0, 0, 0, 0, 0,  -1])
  graph.append([-1,  -1, -1, -1, -1, -1,  -1])
#深度优先遍历
def deepFirstSearch( steps , x, y ):
  global graph
  current_step = steps + 1
  print(x, y, current_step )
  graph[x][y] = current_step
  next_step = current_step + 1
  '''
  遍历周围4个点:
    如果周围节点不是-1 说明 不是障碍 在此基础上:
        里面是0 说明没遍历过 我们把它修改成当前所在位置步数加1
        里面比当前的next_step大 说明不是最优方案 就修改它
        里面比当前next_step说明当前不是最优方案,不修改
  '''
  if not(x-1== 1 and y==1) and graph[x-1][y] != -1 and ( graph[x-1][y]>next_step or graph[x-1][y] ==0 ) : #左
    deepFirstSearch(current_step, x-1 , y )
  if not(x == 1 and y-1==1) and graph[x][y-1] != -1 and ( graph[x][y-1]>next_step or graph[x][y-1] ==0 ) : #上
    deepFirstSearch(current_step, x , y-1 )
  if not(x == 1 and y+1==1) and graph[x][y+1] != -1 and ( graph[x][y+1]>next_step or graph[x][y+1]==0 ) : #下
    deepFirstSearch(current_step, x , y+1 )
  if not(x+1== 1 and y==1) and graph[x+1][y] != -1 and ( graph[x+1][y]>next_step or graph[x+1][y]==0 ) : #右
    deepFirstSearch(current_step, x+1 , y )
if __name__ == "__main__":
  graph = []
  init()
  deepFirstSearch(-1,1,1)
  print(graph[1][5])

运行结果:

(1, 1, 0)
(1, 2, 1)
(2, 1, 1)
(3, 1, 2)
(4, 1, 3)
(5, 1, 4)
(5, 2, 5)
(5, 3, 6)
(4, 3, 7)
(3, 3, 8)
(2, 3, 9)
(2, 4, 10)
(1, 4, 11)
(1, 5, 12)
(2, 5, 13)
(2, 5, 11)
(4, 4, 8)
(4, 5, 9)
(5, 5, 10)
(6, 5, 11)
(6, 4, 12)
(6, 3, 13)
(6, 2, 14)
(6, 1, 15)
(6, 3, 7)
(6, 2, 8)
(6, 1, 9)
(6, 4, 8)
(6, 5, 9)
(6, 2, 6)
(6, 1, 7)
(6, 1, 5)
12

PS:本站还有一个无限迷宫游戏,基于JS实现,提供给大家参考一下:

在线迷宫小游戏:
http://tools.3water.com/games/migong

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

Python 相关文章推荐
python递归计算N!的方法
May 05 Python
Python工程师面试题 与Python基础语法相关
Jan 14 Python
python解决方案:WindowsError: [Error 2]
Aug 28 Python
Python 装饰器使用详解
Jul 29 Python
python实时监控cpu小工具
Jun 21 Python
使用Python微信库itchat获得好友和群组已撤回的消息
Jun 24 Python
Python3直接爬取图片URL并保存示例
Dec 18 Python
python统计函数库scipy.stats的用法解析
Feb 25 Python
Python稀疏矩阵及参数保存代码实现
Apr 18 Python
Python-jenkins模块获取jobs的执行状态操作
May 12 Python
python安装后的目录在哪里
Jun 21 Python
Pycharm 解决自动格式化冲突的设置操作
Jan 15 Python
python保存文件方法小结
Jul 27 #Python
Python实现输入二叉树的先序和中序遍历,再输出后序遍历操作示例
Jul 27 #Python
tensorflow 加载部分变量的实例讲解
Jul 27 #Python
Python基于递归算法求最小公倍数和最大公约数示例
Jul 27 #Python
Python切片操作深入详解
Jul 27 #Python
对Tensorflow中的变量初始化函数详解
Jul 27 #Python
JavaScript中的模拟事件和自定义事件实例分析
Jul 27 #Python
You might like
PHP下用rmdir实现删除目录的三种方法小结
2008/04/20 PHP
php下尝试使用GraphicsMagick的缩略图功能
2011/01/01 PHP
php学习笔记 数组遍历实现代码
2011/06/09 PHP
php比较两个字符串长度的方法
2015/07/13 PHP
一个实用的php验证码类
2017/07/06 PHP
利用Homestead快速运行一个Laravel项目的方法详解
2017/11/14 PHP
PHP simplexml_load_string()函数实例讲解
2019/02/03 PHP
javascript 动态加载 css 方法总结
2009/07/11 Javascript
js实现两个值相加alert出来精确到指定位
2013/09/25 Javascript
带左右箭头图片轮播的JS代码
2013/12/18 Javascript
Nodejs全栈框架StrongLoop推荐
2014/11/09 NodeJs
Express实现前端后端通信上传图片之存储数据库(mysql)傻瓜式教程(二)
2015/12/10 Javascript
如何解决手机浏览器页面点击不跳转浏览器双击放大网页
2016/07/01 Javascript
JS实现的幻灯片切换显示效果
2016/09/07 Javascript
vue系列之requireJs中引入vue-router的方法
2018/07/18 Javascript
解决Vue.js父组件$on无法监听子组件$emit触发事件的问题
2018/09/12 Javascript
vuex实现的简单购物车功能示例
2019/02/13 Javascript
Layui 带多选框表格监听事件以及按钮自动点击写法实例
2019/09/02 Javascript
javascript设计模式之装饰者模式
2020/01/30 Javascript
python中使用sys模板和logging模块获取行号和函数名的方法
2014/04/15 Python
利用python爬取软考试题之ip自动代理
2017/03/28 Python
PIL对上传到Django的图片进行处理并保存的实例
2019/08/07 Python
python多进程重复加载的解决方式
2019/12/13 Python
python中p-value的实现方式
2019/12/16 Python
python获取网络图片方法及整理过程详解
2019/12/20 Python
Python读取csv文件实例解析
2019/12/30 Python
在pycharm中为项目导入anacodna环境的操作方法
2020/02/12 Python
Python接口测试数据库封装实现原理
2020/05/09 Python
详解向scrapy中的spider传递参数的几种方法(2种)
2020/09/28 Python
DKNY品牌官网:纽约大都会时尚风格
2016/10/20 全球购物
Fanatics英国官网:美国体育电商
2018/11/06 全球购物
国外的一些J2EE面试题一
2012/10/13 面试题
汽车技术服务与营销专业在籍生自荐信
2013/09/28 职场文书
医院总经理岗位职责
2014/02/04 职场文书
高中生的自我评价
2014/03/04 职场文书
安全隐患整改报告
2014/11/06 职场文书