我必须创建一个我打印出来的2D数组,但是我正在努力尝试包含所有具体细节。我通过用户输入给出行数和列数,然后必须打印一个数组" S"在左上角和" D"在右下角,随机填写#"#"&随机数。编号是 在[1,100]范围内随机生成,而#34;#"不能超过矩阵总大小的1/3。
但是,我很困惑,不知道我的代码在哪里......
代码:
public void drawMaze(int numRows, int numCols) {
int[][] mazeArray = new int[numRows][numCols];
Random random = new Random();
// Starting Point
mazeArray[0][0] = "S";
// Destination Point
mazeArray[numRows][numCols] = "D";
for (int i = 0; i < mazeArray.length; i++) {
for (int j = 0; j < mazeArray[i].length; j++) {
mazeArray[i][j] = (int)(Math.random()*10);
}
}
}
帮助将不胜感激!
答案 0 :(得分:0)
这可能是这样的:
public void drawMaze(int numRows, int numCols) {
String[][] mazeArray = new String[numRows][numCols];
Random random = new Random();
for (int i = 0; i < mazeArray.length; i++) {
for (int j = 0; j < mazeArray[i].length; j++) {
int result = 1 + random.nextInt(200);
if (result > 100) {
mazeArray[i][j] = "#";
} else {
mazeArray[i][j] = Integer.toString(result);
}
}
}
//starting point
mazeArray[0][0] = "S";
//destination point
mazeArray[numRows-1][numCols-1] = "D";
for (int i = 0; i < mazeArray.length; i++) {
for (int j = 0; j < mazeArray[i].length; j++) {
System.out.print(String.format("%4s", mazeArray[i][j]));
}
System.out.println();
}
}
200只是一个硬编码值。
您可以使其依赖于方法的参数
System.out.print(String.format("%4s", mazeArray[i][j]));
中的4负责间距(当然可以更改为另一个整数)。
答案 1 :(得分:0)
你不应该为每个领域接连。更好的方法是随机填充字段并将1/3的字段留空以填充#。
通过这种方式,您可以更随机地填充迷宫。