ヒル クライミング アルゴリズムを実装するためのネイバーの生成に問題があります。
ここに私が現在取り組んでいるコードがあります。
public ArrayList<Board> generateNeighbors(){
ArrayList<Board> neighborBoards = new ArrayList<Board>();
HashMap<Integer, Integer> initialQueenLocations = this.queenLocations;
for(int i = 0; i < queen; i++){
int[][] neighborBoard = new int[queen][queen];
HashMap<Integer, Integer> neighborQueenLocations = initialQueenLocations;
for(int k = i; k < queen; k++){
for(int j = 0; j < queen; j++){
neighborBoard[j][initialQueenLocations.get(j)] = 1;
}
int initialLocation = initialQueenLocations.get(k);
if(initialLocation > 0){
neighborBoard[k][initialLocation] = 0;
neighborBoard[k][initialLocation - 1] = 1;
neighborQueenLocations.put(k, initialLocation - 1);
neighborBoards.add(new Board(neighborBoard, neighborQueenLocations));
break;
}
}
}
}
私が抱えている問題は、生成する新しいボードごとに最後の移動が保存されることです。隣接する各ボードのステップ サイズを 1 にしたいと考えています。(間違った)出力は次のとおりです。
//initial
0|0|1|
0|1|0|
0|1|0|
//step 1
0|1|0|
0|1|0|
0|1|0|
//step 2
0|1|0|
1|0|0|
0|1|0|
//step 3
0|1|0|
1|0|0|
1|0|0|
これが私が望む出力です。
//initial
0|0|1|
0|1|0|
0|1|0|
//step 1
0|1|0|
0|1|0|
0|1|0|
//step 2
0|0|1|
1|0|0|
0|1|0|
//step 3
0|0|1|
0|1|0|
1|0|0|
ご覧のとおり、前のステップからの移動が保存されています。誰でも助けることができますか?