Hacker News
- Maze Algorithms (2011) https://www.jamisbuck.org/mazes/ 22 comments
- Show HN: A new A.I. Algorithm for Polygonal Mesh Mazes http://petercottle.com/liquidGraph/yc.html?demo= 17 comments
- Maze Generation: Wilson's algorithm http://weblog.jamisbuck.org/2011/1/20/maze-generation-wilson-s-algorithm 11 comments
- The Endless Maze algorithm (Atari 2600) https://www.gamesthatwerent.com/2024/01/the-endless-maze-algorithm/ 11 comments
- Algorithms for making more interesting mazes http://www.gamasutra.com/blogs/HermanTulleken/20161005/282629/Algorithms_for_making_more_interesting_mazes.php 30 comments
- Maze-generation algorithms, with JS demos http://weblog.jamisbuck.org/2011/2/7/maze-generation-algorithm-recap 9 comments
- Generating random mazes with the Growing Tree algorithm (w/ Javascript demo) http://weblog.jamisbuck.org/2011/1/27/maze-generation-growing-tree-algorithm 6 comments
- Weave Maze Generation Algorithm https://meatfighter.com/weave-maze-generator/ 2 comments programming
- Triangular Maze via Kruskal's Algorithm https://www.youtube.com/watch?v=_h65x15ULXE 2 comments coding
- Algorithm Visualization: Maze Generation and Solution https://github.com/BytefishMedium/MazeGame 2 comments javascript
- Open RollerCoaster Tycoon 2 maze solving algorithms comparison https://gist.github.com/eckankar/90a00ae5d77c0382db4869774daa7855 11 comments perl
- Maze Algorithms (2011) https://www.jamisbuck.org/mazes/ 4 comments programming
- A mysterious maze algorithm https://www.reddit.com/r/math/comments/d8bgbu/a_mysterious_maze_algorithm/ 16 comments math
- Optimizing a maze solving algorithm [Python] https://www.reddit.com/r/learnprogramming/comments/9vqbhy/optimizing_a_maze_solving_algorithm_python/ 5 comments learnprogramming
- Maze Algorithms http://datagenetics.com/blog/november22015/index.html 11 comments programming
- Maze Algorithms (visual) http://www.jamisbuck.org/mazes/ 17 comments compsci
- Maze algorithms http://www.astrolog.org/labyrnth/algrithm.htm 4 comments math
- A* algorithm encoded in the type system to solve mazes https://github.com/jfet97/aot-2023/blob/main/A_star.ts 4 comments typescript
- Optimizing a maze with graph theory and genetic algorithms https://medium.com/@cdsmithus/optimizing-a-maze-with-graph-theory-genetic-algorithms-and-haskell-e3702dd6439f 7 comments programming
- Maze Generation Algorithm (Randomized Kruskal's) http://danielcmessias.github.io/2015/05/25/KruskalMazeGen 3 comments gamedev
- [Java] Dijkstra's Algorithm for a maze solving program. https://gist.github.com/anonymous/549277bf119f6021b885 19 comments learnprogramming
- Maze Generation: Eller's Algorithm http://weblog.jamisbuck.org/2010/12/29/maze-generation-eller-s-algorithm 11 comments programming
- Optimizing a maze with graph theory, genetic algorithms, and Haskell https://medium.com/@cdsmithus/optimizing-a-maze-with-graph-theory-genetic-algorithms-and-haskell-e3702dd6439f 6 comments haskell
- Maze Generation algorithms, and drawing with Gloss https://github.com/average-user/mazegen#readme 3 comments haskell
- Master the A* Search Algorithm with an Interactive Maze Game! https://yuanzhixiang.com/en/blog/astar-algorithm-tutorial 2 comments gamedev
- What I learned during my implementation of Aldous-Broder maze generating algorithm. https://github.com/tyc/aldous-broder/tree/master/aldous-broder 12 comments rust
- Prim's Algorithm in action. Javascript maze generation with real-time canvas display http://pastehtml.com/view/bi78j9pe6.html 25 comments programming
- A small game I made while testing a maze generation algorithm. Enjoy! http://www.sendspace.com/file/6np5gi 3 comments gamedev
- Using the Binary Tree algorithm to generate random mazes (w/ Javascript demo) http://weblog.jamisbuck.org/2011/2/1/maze-generation-binary-tree-algorithm 3 comments programming
- I finally decided to implement one of those mazes algorithms in javascript. http://www.javierparra.com.mx/experiments/maze/ 50 comments programming
- Generating random mazes with the Growing Tree algorithm (w/ Javascript demo) http://weblog.jamisbuck.org/2011/1/27/maze-generation-growing-tree-algorithm 11 comments programming
- Excellent presentation on maze algorithms by Jamis Buck. Must see if you're starting out as a game dev. http://www.jamisbuck.org/presentations/rubyconf2011/index.html 8 comments gamedev
- labyrinthos : An interactive online tool that allows users to generate custom mazes using the Recursive Division algorithm https://yantra.gg/labyrinthos/ 2 comments programming
- Entombed's Maze Generator: "As I dug into this maze algorithm, it became clear that this was something that seemed to be fairly unique to this maze game." http://www.bbc.com/future/story/20190919-the-maze-puzzle-hidden-within-an-early-video-game 31 comments programming
- Hey guys! I coded a program that solves mazes using Dijkstra's and A* search algorithms in Java! What do you guys think? https://www.youtube.com/watch?amp%3Bfeature=youtu.be&v=NBR4jm5pZdM 16 comments programming
- [Java] Simple maze solving algorithm. Looking to know how I can improve method that reads in maze inputs from file and populates the maze https://www.reddit.com/r/learnprogramming/comments/7vws80/java_simple_maze_solving_algorithm_looking_to/ 13 comments learnprogramming
- A real-time JavaScript maze generator using the depth-first search algorithm https://github.com/jamesseanwright/maze-generator 4 comments javascript
- Mathletes do battle at Algorithm Olympics. Problems include maze gen and route finding programs. Full article. http://www.wired.com/magazine/2010/11/mf_algorithmolympics/all/1 21 comments programming
- The mysterious origins of an uncrackable video game - the code for a maze game released in 1982 for the Atari contains a table of values that make the mazes that are generated solvable. Researchers do not know how these values were generated and cannot produce any algorithm to generate said values. https://www.bbc.com/future/article/20190919-the-maze-puzzle-hidden-within-an-early-video-game 104 comments programming
- A* Mazing thing - an A* pathfinding algorithm encapsulated in an ES6 Class with interactive rendered demos (Vanilla, React, Blocklike) https://bitbucket.org/ronilan/a-mazing-thing/ 5 comments javascript