Eller’s Algorithm (2012)
neocomputer.org
Eller’s Algorithm (2012)
1–10 of 29 posts
Re: Eller’s Algorithm (2012)
#2Re: Eller’s Algorithm (2012)
#3Examples drawn don’t have an entry and exit?
Re: Eller’s Algorithm (2012)
#4Examples drawn don’t have an entry and exit?
Re: Eller’s Algorithm (2012)
#5Here's a visualisation of many maze algorithms: https://www.jamisbuck.org/mazes/ - the "recursive backtracker" algorithm featured at the top of the list (comes in a parallelizable variant) is the most popular answer for this StackOverflow Q&A: https://stackoverflow.com/questions/38502/whats-a-good-algor... To get a sense of what are some good properties of a maze, this blog post does a pretty comprehensive and exhaustive job: http://datagenetics.com/blog/november22015/index.html
Just in case we're not doing perfect 2D mazes but some variation, the following two pages cover different kinds of mazes:
http://www.astrolog.org/labyrnth/algrithm.htm
http://mazesforprogrammers.com/#mazes
$.02
Re: Eller’s Algorithm (2012)
#6Re: Eller’s Algorithm (2012)
#7Re: Eller’s Algorithm (2012)
#8Basically, you can lazily generate a maze of infinite length. That's pretty cool.
Re: Eller’s Algorithm (2012)
#9Looking at the output of Eller's algorithm, I have to say that it's not the one I'd go with. Here's a visualisation of many maze algorithms: https://www.jamisbuck.org/mazes/ - the "recursive backtracker" algorithm featured at the top of the list (comes in a parallelizable variant) is the most popular answer for this StackOverflow Q&A: https://stackoverflow.com/questions/38502/whats-a-good-algor... To get a sense of w…
Re: Eller’s Algorithm (2012)
#10Looking at the output of Eller's algorithm, I have to say that it's not the one I'd go with. Here's a visualisation of many maze algorithms: https://www.jamisbuck.org/mazes/ - the "recursive backtracker" algorithm featured at the top of the list (comes in a parallelizable variant) is the most popular answer for this StackOverflow Q&A: https://stackoverflow.com/questions/38502/whats-a-good-algor... To get a sense of w…