TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Maze Algorithms (2011)

116 点作者 Timothee将近 5 年前

13 条评论

aprinsen将近 5 年前
I got interested in mazes late last year and found Mr. Buck&#x27;s resources invaluable. In fact, I received his book for Christmas. I highly recommend it, definitely worth the paperback purchase to support his work.<p>I implemented several of the algorithms for my Rust maze generation tools (<a href="https:&#x2F;&#x2F;github.com&#x2F;animate-object&#x2F;mazes" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;animate-object&#x2F;mazes</a>, <a href="https:&#x2F;&#x2F;github.com&#x2F;animate-object&#x2F;maze-cli" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;animate-object&#x2F;maze-cli</a>), (and the game I built on top of them <a href="https:&#x2F;&#x2F;github.com&#x2F;animate-object&#x2F;followed" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;animate-object&#x2F;followed</a>)
xabi将近 5 年前
My maze algorithms done in perl more than 10 years ago<p><a href="https:&#x2F;&#x2F;github.com&#x2F;xa-bi&#x2F;mazes" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;xa-bi&#x2F;mazes</a>
Sohcahtoa82将近 5 年前
Several years ago, I wrote a maze generator using POV-Ray [0]. It&#x27;s interesting trying to write a queue in a language that only has simple fixed-length arrays.<p>IMO, the recursive backtracking algorithm looks the best, and I&#x27;d probably use that if I were to ever return to this quick little project.<p>[0]<a href="https:&#x2F;&#x2F;youtu.be&#x2F;VwuA2Z1tCaw" rel="nofollow">https:&#x2F;&#x2F;youtu.be&#x2F;VwuA2Z1tCaw</a>
fjfaase将近 5 年前
Recently, I have been working on a maze program (in C++) that generates SVG files that can be used to cut mazes with a laser cutter. I also have been trying to do some statistical analyses on the various algorithms.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;FransFaase&#x2F;MazeGen" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;FransFaase&#x2F;MazeGen</a><p>Because this program is for my own experiments, I simply modify the &#x27;main&#x27; function if I want to change some parameters or select another combination of algorithms. See &#x27;all_tests&#x27; for some examples of how the various methods can be called.
yellowapple将近 5 年前
The Aldous-Broder algorithm sure is somethin&#x27;.
评论 #23436245 未加载
hamsterbooster将近 5 年前
This might be a stupid question but how can the site run multiple maze generation algorithm at the same time? My understanding is that javascript is single thread.
评论 #23436185 未加载
评论 #23436169 未加载
rejschaap将近 5 年前
I feel mazes are a nice hello world project for learning a new programming language. I made one in JavaScript last month when I was setting up a personal web site. I added a maze to the 404 page to show how truly lost you are when you end up there. It is the most interesting page on my web site so far.<p><a href="https:&#x2F;&#x2F;www.schaap.io&#x2F;404.html" rel="nofollow">https:&#x2F;&#x2F;www.schaap.io&#x2F;404.html</a>
jarrell_mark将近 5 年前
Wilson&#x27;s algorithm creates the best mazes by having a variety of short and long passages.
user2994cb将近 5 年前
Generating mazes on 3d polyhedra &amp; other surfaces: <a href="http:&#x2F;&#x2F;matthewarcus.github.io&#x2F;polyjs&#x2F;maze.html" rel="nofollow">http:&#x2F;&#x2F;matthewarcus.github.io&#x2F;polyjs&#x2F;maze.html</a>
ivhilaire将近 5 年前
I got so interested in mazes after the last HN post on Eller&#x27;s algorithm that I actually created and published a real mobile game based on it! (shameless plug: it&#x27;s called &quot;Squashy Squares&quot;)
diziet将近 5 年前
If you are interested in mazes and maze solving in general, check out <a href="https:&#x2F;&#x2F;www.pathery.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.pathery.com&#x2F;</a>
mycall将近 5 年前
Are there any algorithms that are not squares or include line art?
评论 #23434630 未加载
评论 #23434633 未加载
评论 #23438570 未加载
评论 #23434906 未加载
kebman将近 5 年前
Amazeing!