The Recursive Backtracker Algorithm
Learn what the Recursive Backtracker algorithm is and how it can be used for maze generation.
We'll cover the following...
Introduction
The Recursive Backtracker algorithm works very much like the Hunt-and-Kill algorithm, relying on a constrained random walk to weave its rivery way across our grid. The difference is in how it recovers from dead ends: instead of hunting for another viable cell, it backtracks, retracing its steps until it finds a cell that has an unvisited neighbor.
The Recursive Backtracker algorithm explained and illustrated
Let’s walk through it and see how it works. We’ll use a stack to keep track of the cells we’ve visited. A ...