我正在尝试使用MinMax进行tic tac toe(总是计算机获胜),但我无法让它工作。 所有后继者只需返回0(绘图)作为分数,因此计算机总是选择在矩阵的自然方向上移动。
PS:Matrix(class)是他们玩的棋盘,包含9个阵容的阵列。
| X | O | X | O | ...... |像这样。
处理Tic Tac Toe板的全局变量称为Main,是Matrix的一个实例。
public void minMax(Matrix p) {
Matrix bestvalue = maxValue(p);
print(bestvalue);
System.out.println(bestvalue.getScore());
main = searchSucessorWithScore(p, bestvalue.getScore());
}
public Matrix maxValue(Matrix p) {
if(endState(p)) { p.setScore(utility(p)); return p; } //always sets score to 0 but the method utility is correct...
Matrix bestmove = new Matrix();
bestmove.setScore(Integer.MIN_VALUE);
LinkedList<Matrix> list = addSucessors(p, plays.PLAY_X);
for(Matrix s : list) {
Matrix move = minValue(s);
if(move.getScore() > bestmove.getScore()) {
bestmove = move;
}
}
return bestmove;
}
public Matrix minValue(Matrix p) {
if(endState(p)) { p.setScore(utility(p)); return p;}
Matrix bestmove = new Matrix();
bestmove.setScore(Integer.MAX_VALUE);
LinkedList<Matrix> list = addSucessors(p, plays.PLAY_O);
for(Matrix s : list) {
Matrix move = maxValue(s);
if(move.getScore() < bestmove.getScore()) { // <
bestmove = move;
}
}
return bestmove;
}
熟悉的方法:
public LinkedList<Matrix> addSucessors(Matrix k, plays l) {
LinkedList<Matrix> list = new LinkedList<Matrix>();
for(int i=0; i<9; i++) {
if(k.getRow(i).equals(plays.BLANK)) {
Matrix p = k.clone();
p.setRow(i, l);
list.add(p);
}
}
return list;
}
/* RETURNS 0 FOR DRAW, 1 FOR PC WIN, -1 FOR USER WIN */
public int utility(Matrix p) {
for(int i=0; i<9; i=i+3) {
if(main.getRow(i).equals(plays.PLAY_X) && main.getRow(i+1).equals(plays.PLAY_X) && main.getRow(i+2).equals(plays.PLAY_X)) return 1;
if(main.getRow(i).equals(plays.PLAY_O) && main.getRow(i+1).equals(plays.PLAY_O) && main.getRow(i+2).equals(plays.PLAY_O)) return -1;
}
for(int i=0; i<3; i++) {
if(main.getRow(i).equals(plays.PLAY_X) && main.getRow(i+3).equals(plays.PLAY_X) && main.getRow(i+6).equals(plays.PLAY_X)) return 1;
if(main.getRow(i).equals(plays.PLAY_O) && main.getRow(i+3).equals(plays.PLAY_O) && main.getRow(i+6).equals(plays.PLAY_O)) return -1;
}
if(main.getRow(0).equals(plays.PLAY_X) && main.getRow(4).equals(plays.PLAY_X) && main.getRow(8).equals(plays.PLAY_X)) return 1;
if(main.getRow(2).equals(plays.PLAY_X) && main.getRow(4).equals(plays.PLAY_X) && main.getRow(6).equals(plays.PLAY_X)) return 1;
if(main.getRow(0).equals(plays.PLAY_O) && main.getRow(4).equals(plays.PLAY_O) && main.getRow(8).equals(plays.PLAY_O)) return -1;
if(main.getRow(2).equals(plays.PLAY_O) && main.getRow(4).equals(plays.PLAY_O) && main.getRow(6).equals(plays.PLAY_O)) return -1;
return 0;
}
public Matrix searchSucessorWithScore(Matrix p, Integer v) {
for(Matrix s : addSucessors(p, plays.PLAY_X) {
if(s.getScore() == v) return s;
}
return null;
}
方法实用程序是正确的,但内部递归只返回0,即使对于有赢家的矩阵也是如此。
帮助:D
答案 0 :(得分:0)
没有足够的代码发布以正确评估,但这几乎不可行。
Integer v
s.getScore() == v
您应该使用Integer.intValue()