我试图编写一个程序来递归解决迷宫。完成步骤后,在迷宫中的该位置放置一个“ x”字符并打印该迷宫,如果迷宫到达死角,则通过从该位置删除“ x”来回溯其最后的递归步骤。
运行时,程序始终在第一步停止;它不能完全解决迷宫问题
我试过了:
-对每个连续步骤进行硬编码,以避开迷宫中的墙(但这违背了使用递归的目的)
-开始随机采取的第一步(但这会导致ArrayIndexOutOfBoundsException)
import java.util.Random;
public class MazeTraversalWithRecursiveBacktracking
{
private static Random random = new Random();
public static void main(String args[])
{
char [][] maze = {{'#', '#', '#', '#', '#', '#','#', '#', '#', '#', '#', '#'},
{'#', '.', '.', '.', '#', '.','.', '.', '.', '.', '.', '#'},
{'.', '.', '#', '.', '#', '.','#', '#', '#', '#', '.', '#'},
{'#', '#', '#', '.', '#', '.','.', '.', '.', '#', '.', '#'},
{'#', '.', '.', '.', '.', '#','#', '#', '.', '#', '.', '.'},
{'#', '#', '#', '#', '.', '#','.', '#', '.', '#', '.', '#'},
{'#', '.', '.', '#', '.', '#','.', '#', '.', '#', '.', '#'},
{'#', '#', '.', '#', '.', '#','.', '#', '.', '#', '.', '#'},
{'#', '.', '.', '.', '.', '.','.', '.', '.', '#', '.', '#'},
{'#', '#', '#', '#', '#', '#','.', '#', '#', '#', '.', '#'},
{'#', '.', '.', '.', '.', '.','.', '#', '.', '.', '.', '#'},
{'#', '#', '#', '#', '#', '#','#', '#', '#', '#', '#', '#'}};
printMaze(maze);
mazeTraversal(maze, 2, 0);
}
public static void mazeTraversal(char [][] maze, int currX, int currY)
{
int choice = -1;
try
{
maze[currX][currY] = 'x';
printMaze(maze);
boolean chosen = false;
if ((currX == 4) && (currY == 11)) //end of the maze
{
System.out.println("Maze completed");
return;
}
while(!chosen)
{
choice = 1;
//System.out.println("Choice "+choice);
if (choice == 0)
{
if (maze[currX-1][currY] == '.')//up
{
System.out.println("Chose up");
chosen = true;
}
else
choice = random.nextInt(4);
}
else if (choice == 1)
{
if (maze[currX][currY+1] == '.')//right
{
System.out.println("Chose right");
chosen = true;
}
else
choice = random.nextInt(4);
}
else if (choice == 2)
{
if (maze[currX+1][currY] == '.')//down
{
System.out.println("Chose down");
chosen = true;
}
else
choice = random.nextInt(4);
}
else if (choice == 3)
{
if (maze[currX][currY-1] == '.')//left
{
System.out.println("Chose left");
chosen = true;
}
else
choice = random.nextInt(4);
}
else
{
System.out.println("Haven't chosen");
choice = random.nextInt(4);
}
//System.out.println(choice+" "+chosen);
}
System.out.println(choice+" "+chosen);
if (choice == 0)
mazeTraversal(maze,currX-1,currY);
else if (choice == 1)
mazeTraversal(maze,currX,currY+1);
else if (choice == 2)
mazeTraversal(maze,currX+1,currY);
else if (choice == 3)
mazeTraversal(maze,currX,currY-1);
else //backup
{
recursiveBacktrack(maze, currX, currY);
}
}
catch(ArrayIndexOutOfBoundsException ex)
{
ex.printStackTrace();
System.out.println("Maze finished with choice = "+choice);
}
}
public static void recursiveBacktrack(char [][]maze, int currX, int currY)
{
maze[currX][currY] = ' ';
}
public static void printMaze(char maze[][])
{
for(int i = 0; i < 12; ++i)
{
for(int j = 0; j < 12; ++j)
{
System.out.print(maze[i][j]+" ");
}
System.out.println();
}
System.out.println();
System.out.println();
}
}
预期结果:预期结果是通过在每个递归步骤之后重新打印整个迷宫,以递归方式显示每次尝试的迷宫。 “#”是一堵墙,“。”是一个自由空间,而“ x”是一个已被占用的空间。
实际结果:如前所述,我得到的实际结果只是程序的无限期循环的第一步。
错误消息:有时,我收到错误消息ArrayIndexOutOfBoundsException:-1
最佳答案
首先让我们看看isValidDirection
和isSolution
应该如何工作:
public boolean isValidDirection(x, y) {
return ((x < maze.length) &&
(x >= 0) &&
(y < maze[x].length) &&
(y >= 0) &&
(maxe[x][y] == '.'));
}
public boolean isSolution(x, y) {
return isValidDirection(x, y) && (((x % maze.length) - 1 == 0) || ((y % maze[x].length) - 1 == 0));
}
让我们实现迷宫赛跑者:
public boolean mazeRunner(x, y) {
if (!isValidDirection) {
//TODO: output the attempt
}
maze[x][y] = 'x';
//add (x,y) to current attempt
//we need to count attempt length
if (isSolution(x, y)) {
//TODO: output the successful attempt
} else if ((
(mazeRunner(x - 1, y)) ||
(mazeRunner(x + 1, y)) ||
(mazeRunner(x, y - 1)) ||
(mazeRunner(x, y + 1))
) == false) {
//TODO: Output the current failed attempt
}
maze[x][y] = '.';
//TODO: remove (x, y) from the current attempt
}
public void startMazeRunning(char[][] maze, x, y) {
this.maze = maze;
}
当然,您将需要确保定义并正确初始化了所有需要的成员。
关于java - 如何使用递归回溯(Java)找到特定迷宫的解决方案?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56670766/