...

/

The Aldous-Broder Algorithm

The Aldous-Broder Algorithm

Learn what the Aldous-Broder algorithm is and how it can be used for maze generation.

Background

The Aldous-Broder algorithm was developed independently by both David Aldous, a professor at UC Berkeley, and Andrei Broder, a Distinguished Scientist at Google. It is almost as simple to implement as the Binary Tree algorithm. The idea is just this: Start anywhere in the grid you want and choose a random neighbor. Move to that neighbor, and if it hasn’t previously been visited, link it to the prior cell. Repeat until every cell has been visited.

The Aldous-Broder algorithm

...