コンウェイの人生ゲームを実装しています。私は最初のボードを読みましたが、セルの生きている隣人をカウントするようにプログラムする必要があります。
いくつかの基本的なルール
生きている隣人が 2 つ未満の生きているセルは、人口不足が原因であるかのように死にます。2 つまたは 3 つの生きた隣人を持つ生きたセルは、次の世代に生き続けます。生きている隣人が 3 つ以上いる生きているセルは、過密状態のように死にます。ちょうど 3 つの生きている隣接セルを持つ死んだセルは、再生によって生きているセルになります。
これが私がすでに持っているコードです。
更新: これは、最初のアドバイスの後に変更されたコードです。
/**
* Write your comments here following the javadoc conventions
*/
public static int countNeighbours(boolean[][] board, int row, int col)
{
int neighbours = 0;
int x = -1;
while (x <= 1) {
int y = -1;
while (y <= 1) {
if (board[row][col] == true) {
neighbours++;
}
// Given a 2D boolan array and a cell location given by its
// row and column indecies, count the number of live cells
// immediately surrounding the given cell. Remember that you
// mustn't count the cell itself.
}
}
return neighbours;
}
これは正しい軌道に乗っていますか?