Creating a Maze using Java
Posted
by user356184
on Stack Overflow
See other posts from Stack Overflow
or by user356184
Published on 2010-06-02T07:27:14Z
Indexed on
2010/06/02
7:33 UTC
Read the original article
Hit count: 208
Im using Java to create a maze of specified "rows" and "columns" over each other to look like a grid. I plan to use a depth-first recursive method to "open the doors" between the rooms (the box created by the rows and columns).
I need help writing a openDoor method that will break the link between rooms.
© Stack Overflow or respective owner