0
         20 7
         xxxxxxxxxxxxxxxxxxEx
         x     x       xxxx x
         x xxxxx xxxxx   xx x
         x xxxxx xxxxxxx xx x
         x            xx xx x
         x xxxxxxxxxx xx    x 
         xxxxxxxxxxxxSxxxxxxx

 Finding a way through the maze, S is the starting 6 12. And ends at E, 0 18.

 import java.util.*;
 import java.io.*;

 public class mazeSolver {
boolean wall = false;
char[][] maze;
boolean solved;


public mazeSolver(char[][] in_maze) {
    maze = in_maze;
}

public void findPath(int row, int col) {
    if (maze[row][col] == 'E') {
        solved = true;
        return;
    }

    maze[row][col] = 'b';

    if (maze[row + 1][col] == ' ' || maze[row + 1][col] == 'E') {
        findPath(row + 1, col);
    }
    else if (maze[row][col + 1] == ' ' || maze[row][col + 1] == 'E') {
        findPath(row, col + 1);
    }
    else if (maze[row - 1][col] == ' ' || maze[row - 1][col] == 'E') {
        findPath(row -1, col);
    }
    else if (maze[row][col - 1] == ' ' || maze[row][col - 1] == 'E') {
        findPath(row, col - 1);
    }
    else {
        wall = true;
        return;
    }

    if (wall) {
        wall = false;
        findPath(row, col);
    }

    if (solved) {
        maze[row][col] = '+';
    }

}

public void printMaze(int rows, int cols) {
    for (int i = 0; i < rows; i++) {
        for (int j = 0; j < cols; j++) {
            System.out.print(maze[i][j]);
        }

        System.out.println();
    }
}



public void solveCheck(int rows, int cols) {
    boolean solveable = false;
    for (int i = 0; i < rows; i++) {
        for (int j = 0; j < cols; j++) {
            if (maze[i][j] != '+') {
                solveable = true;
            }
            break;
        }
        break;
    }

    if(!solveable){
        System.out.println("S is unreachable");
    }
}

}

これもメインクラス

      import java.util.Scanner;
       import java.io.File;

         public class ADTmaze {
           public static void main(String[] args) {
          try {
        Scanner myScanner = new Scanner(
                new File("maze.txt"));
        int numRows = myScanner.nextInt();
        int numCols = myScanner.nextInt();
        myScanner.nextLine();

        int startX = 0;
        int startY = 0;

        // New maze
        char[][] maze = new char[numRows][numCols];

        System.out.println(numRows +","+ numCols);



        for (int i = 0; i < numRows; i++) {
            String nextLine = myScanner.nextLine();
            for (int j = 0; j < numCols; j++) {
                char nextChar = nextLine.charAt(j);
                maze[i][j] = nextChar;
                System.out.print(nextChar);
            }
            System.out.println();
        }

        // Solve the maze
        mazeSolver newMaze = new mazeSolver(maze);
        System.out.println();
        newMaze.findPath(startX, startY);
        newMaze.printMaze(numRows, numCols);


        // Find the starting point
        for (int i = 0; i < numRows; i++) {
            for (int j = 0; j < numCols; j++) {
                if (maze[i][j] == 'S') {
                    System.out.println("Starting coordinates: "
                            + i + ", " + j);
                    startX = i;
                    startY = j;
                }
            }
        }


    } catch (Exception ex) {
        System.out.println(ex);
    }
}

}

エラーが発生しますが、上記のオリジナルのようにマトリックス全体が出力されず、行が見つからないというエラーが発生します。どこが間違っているのかわからない。印刷機能のどこがおかしいのかわからない

     20,7
    xxxxxxx
    x     x
    x xxxxx
    x xxxxx
    x      
    x xxxxx
    xxxxxxx
     java.util.NoSuchElementException: No line found
4

1 に答える 1

0

まず、maze.txt の最初の行が逆になっている場合、7 行 (0 から 6) と 20 列に対して 7 20 を指定する必要があります。

また、再帰を行う前に S の場所を見つける必要があるため、そのコードのチャンクを上に移動します。

最後に、mazeSolver 内の配列の次元を見つけてから、row+1 と col+1 を持つ 2 つの if テスト ブロックをテストする必要があります。 maze[7,12] 要素 (行 + 1) プログラムが爆撃します。

于 2013-10-04T04:41:20.533 に答える