-
Notifications
You must be signed in to change notification settings - Fork 2
References
Alex G. Lopez edited this page Jul 2, 2023
·
1 revision
- Mazes for Programmers by Jamis Buck was a great starting point for many of the core ideas behind the algorithms that build these mazes. However, writing in Rust required me to often take a different approaches than those used by Buck.
- The Maze Generation Algorithm Wikipedia page is very helpful in outlining some pseudocode for most of these algorithms.
- The Think Labyrnth website by Walter D. Pullen is a great resource for extensive knowledge on mazes. For example, I did not know that a wall adder wilson's algorithm was possible until reading the website.