gpt4 book ai didi

java - 这个算法不能正常工作?(棋盘皇后运动)

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:42:31 25 4
gpt4 key购买 nike

首先简要介绍一下我的程序,它是一个棋盘。 8 x 8 网格,从底行到顶行,从左列开始到右栏,A 到 H。

样本输入:试验 1

============
Test.
Qh8 is attacking the target on Xb2
. . . . . . . Q
. . . . . . . .
. . . . . . . .
N . . . . . . .
. . B . K . . R
. . . . . . . .
. X . . . . . .
. . . . . . . .

在这种情况下,女王能够攻击,因为 X 不在网格的最左下角。但问题是我无法达到网格左下角的最后一个值,对于其他情况,请查看它们以帮助您更好地理解我遇到的问题。

样本输入:试验 2

============
Test.
. . . . . . . Q
. . . . . . . .
. . . . . . . .
. . . . . . . .
N . B . K . . R
. . . . . . . .
. . . . . . . .
X . . . . . . .

这就是我上面说的Queen不能达到X值的意思

这只是为了解释我的意思

案例 1:

============
Test.
Qa8 is attacking the target on Xh1
Q . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . B . K . . R
. . . . . . . .
. . . . . . . .
N . . . . . . X

有效!女王能够攻击X

注意:只有在这种情况下,它才能在我的算法中工作,但不确定为什么,但其他算法则不能。

案例 2:

============
Test.
. . . . . . . X
. . . . . . . .
. . . . . . . .
. . . . . . . .
N . B . K . . R
. . . . . . . .
. . . . . . . .
Q . . . . . . .

不行,女王不能攻击X

案例 3:

Test.
X . . . . . . .
. . . . . . . .
. . . . . . . .
. . . . . . . .
. . B . K . . R
. . . . . . . .
. . . . . . . .
N . . . . . . Q

这也不行,Queen不能攻击X吗?

源代码

 public void ableToAttack(){



for(int row = 0; row < grid.length; row++){
for(int column = 0; column < grid[row].length; column++){

grid[row][column] = ".";
grid[7-queen.charAt(2)+49][(int)queen.charAt(1)-97] = "Q";
grid[7-rook.charAt(2)+49][(int)rook.charAt(1)-97] = "R";
grid[7-bishop.charAt(2)+49][(int)bishop.charAt(1)-97] = "B";
grid[7-king.charAt(2)+49][(int)king.charAt(1)-97] = "K";
grid[7-knight.charAt(2)+49][(int)knight.charAt(1)-97] = "N";
grid[7-target.charAt(2)+49][(int)target.charAt(1)-97] = "X";

}
}

//HELLO FRIENDS THIS IS WHERE IM STUCK ON THIS METHOD
int moveRow = 0;
int moveColumn = 0;
for( int takeSteps = 0; takeSteps < 8; takeSteps++){
moveRow++;
moveColumn++;
//South east Diaognal Algorithm
if (inBoard(convRow(target),convCol(target))) {
if ((convRow(target) == convRow(queen)+moveRow) && (convCol(target) == convCol(queen)+moveColumn)) {
System.out.println(queen + " is attacking the target on "+target);
}

}
//North West diagonal Algorithm
if (inBoard(convRow(target),convCol(target))) {
if ((convRow(target) == convRow(queen)-moveRow) && (convCol(target) == convCol(queen)-moveColumn)) {
System.out.println(queen + " is attacking the target on "+target);
}

}

// North East diaognal Algorithm
if (inBoard(convRow(target),convCol(target))) {
if ((convRow(target) == convRow(queen)-moveRow) && (convCol(target) == convCol(queen)+moveColumn)) {
System.out.println(queen + " is attacking the target on "+target);
}

}
// South West diagonal Algorithm
if (inBoard(convRow(target),convCol(target))) {
if ((convRow(target) == convRow(queen)+moveRow) && (convCol(target) == convCol(queen)-moveColumn)) {
System.out.println(queen + " is attacking the target on "+target);
}

}

}

for(int row = 0; row <grid.length; row++){
for(int column = 0; column <grid[row].length; column++){
System.out.printf("%2s",grid[row][column] + " ");
}
System.out.println();
}



}

private boolean inBoard(int row, int col) {
return (row <= 8)
&& (row >= 1)
&& (col <= 8)
&& (col >= 1);
}

private int convRow(String rowz) {
return 7-rowz.charAt(2)+49;
}

private int convCol(String columnz) {
return columnz.charAt(1)-97;
}

最佳答案

https://stackoverflow.com/questions/43740616/how-can-i-check-if-queen-is-able-to-attack-the-x-position-but-not-moving-it-t/43740955#43740955

你有多少个账户,你会问多少次同样的问题

    private boolean inBoard(int row, int col) {
return (row <= 8)
&& (row >= 1)
&& (col <= 8)
&& (col >= 1);
}

我很确定这个函数是错误的,在 Java 数组中从 0 开始,而你的表长度是 8,所以它在 0 到 7 之间。

必须是:

private boolean inBoard(int row, int col) {
return (row <= 7)
&& (row >= 0)
&& (col <= 7)
&& (col >= 0);
}

关于java - 这个算法不能正常工作?(棋盘皇后运动),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43786806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com