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.

link|improve this question
3  
Before writing an openDoor method, we need a couple of basic objects that describe the room and the relationship between them (the doors?). Can you show your definition of the maze in terms of data objects? – Marc Jun 2 '10 at 7:29
are you trying to CREATE a maze or FIND a way thru maze? – Xorty Jun 2 '10 at 8:00
I am wanting to create the maze and then later find a way through it. Tho at the moment I am stuck on writing the method to openDoors between "rooms". – user356184 Jun 2 '10 at 8:04
Im parsing in the current row and column along with the direction (North East South West) into my method. I also have the total number of rows and columns in the class. Is this what you mean? – user356184 Jun 2 '10 at 8:04
feedback

2 Answers

try something like this : example

link|improve this answer
feedback

Because you mention depth-first(-search) (DFS) I assume, your maze is a graph where nodes represent rooms. The nodes are connected if there is an unlocked door between rooms. The graph may be cyclic.

You have a start room and may be looking for something in the maze. So you enter a room, check every door, whether it is unlocked or you have key that fits and open every possible door. You may find a key. Then you add that key to your keyring and restart in the start room.

Formally (adapted from de:wikipedia; see also en.wikipedia):

DFS(node, goal)
{
  if (node == goal)
    return node;
  else if (node.contains(newKey)) 
  {
    addToKeyRing(newKey);
    resetMaze();
    DFS(startRoom, goal);
  } else 
  {
    stack := expand (node) // all unvisited rooms that can be entered pushed on stack
    while (stack is not empty)
    {
      node' := pop(stack);
      DFS(node', goal);
    }
  }
}
link|improve this answer
+1 Added links; please revert if incorrect. – trashgod Jun 2 '10 at 15:35
Thanks :) Yes, the links are the ones I used for the answer. – Andreas_D Jun 2 '10 at 15:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.