Digging Deeper into the Binary Tree Algorithm
Learn more about Binary Tree mazes.
We'll cover the following...
Entrances and exits
At this point, though, you might wonder how it can be a maze if there is no way into or out of that box. Aren’t mazes supposed to have starting points and ending points? That’s a fair question! The truth of the matter is that it’s entirely up to us.
Earlier, we talked a bit about the idea of perfect mazes. It all comes back to that again. The maze we just drew is a perfect maze, and one of the attributes of a perfect maze is that there exists exactly one path between any two cells in it. Any two! We pick them, and there’s guaranteed to be a path between them.
This means we can choose any two cells in our maze, make one of them the starting point and the other the ending point, and we can be confident knowing that there’s a real solution to our maze. Just like that. Want to enter on one side and exit on the other? We'll choose two cells on the boundaries of our maze, erase the outer walls of those cells, and we’re all set.
It depends on what we want our maze to do. The maze in Pac-Man, for instance, has no exit at all because the goal is simply to eat all the pellets before the ghosts get you. Other games, like Zelda, allow us to enter a maze, but the goal is to reach a point inside it, so we can defeat some boss creature and obtain the treasure.
So don’t be ...