作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题需要更多focused .它目前不接受答案。
想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post .
5年前关闭。
Improve this question
这是一个需要用最少代码解决的有趣问题。我预计递归解决方案将是最受欢迎的。
我们有一个定义为字符映射的迷宫,其中 =
是墙,空间是路径,+
是您的起点,而#
是你的终点。一个非常简单的例子是这样的:
====
+ =
= ==
= #
====
*
) 突出显示最短路径。
最佳答案
适用于具有最少 CPU 周期的任何(固定大小)迷宫(给定足够大的 BFG2000)。源大小无关紧要,因为编译器非常高效。
while curr.x != target.x and curr.y != target.y:
case:
target.x > curr.x : dx = 1
target.x < curr.x : dx = -1
else : dx = 0
case:
target.y > curr.y : dy = 1
target.y < curr.y : dy = -1
else : dy = 0
if cell[curr.x+dx,curr.y+dy] == wall:
destroy cell[curr.x+dx,curr.y+dy] with patented BFG2000 gun.
curr.x += dx
curr.y += dy
survey shattered landscape
关于maze - Code Golf : Solve a Maze,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1326349/
我是一名优秀的程序员,十分优秀!