For DFS maze generation in Java I wanna randomize the order in which the recursive calls of a DFS are made:
for (int rows=i; rows<M; rows++)
for (int cols=j; cols<N; cols++){
if(northValid)
{
DFS(iNorth,j);
}
if(southValid){
DFS(iSouth,j);
}
if(eastValid){
DFS(i, jEast);
}
if(westValid){
DFS(i,jWest);
}
How can I do that?
DFS(calls, or call all four in a random order?? – mellamokb Apr 28 '11 at 21:33