代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Python
】
迷宫成程序
作者:
nicozhang
/ 发布于
2013/8/20
/
1099
#Your code here #You can import some modules or create additional functions #reset the dict and store the new info import copy def reset(d): for key in d.keys(): d[key] = None return d def checkio(data): #Your code here #It's main function. Don't remove this function #It's using for auto-testing and must return a result for check. #replace this for solution #This is just example for first maze #pre-direction sotres the pre-cell path = [] cell = {'direction':None,'pre_direct':None,'px':1,'py':1,'s':None,'n':None,'e':None,'w':None,} cell_count=0 px = 1 py = 1 find_route = False check_flag = False #store the pre_cell info #put he first cell into path if data[px+1][py] == 0 and cell['s'] == None: cell['s'] = 1 cell['direction'] = 's' px = px + 1 elif data[px][py+1] == 0 and cell['e'] == None: cell['e'] = 1 cell['direction'] = 'e' py = py + 1 elif data[px-1][py] == 0 and cell['n'] == None: cell['n'] = 1 cell['direction'] = 'n' px = px - 1 elif data[px][py-1] == 0 and cell['w'] == None: cell['w'] = 1 cell['direction'] ='w' py = py - 1 path.append(copy.deepcopy(cell)) pre_cell = path[0] cell = reset(cell) while True: if px == 10 and py == 10: find_route = True break elif not path: break #init a new cell basic info cell['pre_direct'] = pre_cell cell['px'] = px cell['py'] = py circle_flag = False #visit the south.if the south is clear and put the point info into the cell and refresh the info of the dict. #if can not find the right pop it #need to judge the pre-cell direction #can not become a circle for temp_elem in path: if temp_elem['px']==px and temp_elem['py'] == py: circle_flag = True if circle_flag == False: if data[px+1][py] == 0 and cell['s'] == None and pre_cell['direction'] != 'n': cell['s'] = 1 cell['direction'] = 's' px = px + 1 check_flag = True elif data[px][py+1] == 0 and cell['e'] == None and pre_cell['direction'] != 'w': cell['e'] = 1 cell['direction'] = 'e' py = py + 1 check_flag = True elif data[px-1][py] == 0 and cell['n'] == None and pre_cell['direction'] != 's': cell['n'] = 1 cell['direction'] = 'n' px = px - 1 check_flag = True elif data[px][py-1] == 0 and cell['w'] == None and pre_cell['direction'] != 'e': cell['w'] = 1 cell['direction'] = 'w' py = py - 1 check_flag = True if check_flag == True: path.append(copy.deepcopy(cell)) pre_cell = path[-1] cell = reset(cell) check_flag = False elif path: cell = path.pop() px = cell['px'] py = cell['py'] pre_cell = cell['pre_direct'] #when the pushing condation can be not satisfied,pop the cell out of the stack re = '' if find_route == True: for elem in path: re = re + elem['direction'].upper() else: re = 'can not find' return re #Some hints #Look to graph search algorithms #Don't confuse these with tree search algorithms #This code using only for self-checking and not necessary for auto-testing if __name__ == '__main__': print(checkio( [[1,1,1,1,1,1,1,1,1,1,1,1], [1,0,0,0,0,0,0,0,0,0,0,1], [1,1,1,0,1,1,1,1,0,1,1,1], [1,0,0,0,0,0,0,0,0,0,0,1], [1,0,1,1,1,0,1,1,1,1,1,1], [1,0,0,1,0,0,0,0,0,0,0,1], [1,1,0,1,1,1,1,1,1,0,1,1], [1,0,0,0,0,0,1,0,0,0,0,1], [1,1,1,1,1,0,1,0,0,1,0,1], [1,0,0,0,0,0,1,1,1,1,1,1], [1,0,1,1,1,0,0,0,0,0,0,1], [1,1,1,1,1,1,1,1,1,1,1,1]])) #be carefull with infinity loop print(checkio([ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1], [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1], [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1], [1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1], [1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1], [1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1], [1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]])) #be carefull with infinity loop print(checkio([ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] ])) print(checkio([ [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1], [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1], [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1], [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1], [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1], [1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1], [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], ]))
试试其它关键字
迷宫成程序
同语言下
.
比较两个图片的相似度
.
过urllib2获取带有中文参数的url内容
.
不下载获取远程图片的宽度和高度及文件大小
.
通过qrcode库生成二维码
.
通过httplib发送GET和POST请求
.
Django下解决小文件下载
.
遍历windows的所有窗口并输出窗口标题
.
根据窗口标题调用窗口
.
python 抓取搜狗指定公众号
.
pandas读取指定列
可能有用的
.
实现测量程序运行时间及cpu使用时间
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
nicozhang
贡献的其它代码
(
1
)
.
迷宫成程序
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3