gpt4 book ai didi

java - 读取二维数组的问题 - Java

转载 作者:太空宇宙 更新时间:2023-11-04 11:02:38 26 4
gpt4 key购买 nike

我正在尝试使用二维数组进行康威的生命游戏。该方法应该查看二维数组上的每个位置并检查其每个邻居并计算该位置周围有多少个邻居(0 为空,1 为占用)。然后它执行一些逻辑并决定该位置是死是活。我遇到的问题是,当它检查第二个位置时,tempMatrix 的值是错误的。我专门检查了第一个位置 [0][0],它从 0 变为 1,我不知道为什么。预先感谢您的帮助!

public static int[][] Evolve(int[][] _array){
inputMatrix = _array;
outputMatrix = inputMatrix;
int [][] tempMatrix = inputMatrix;
System.out.println("Output Matrix:");
for (int x = 0; x < size; x++){
for (int y = 0; y < size; y++){
int neighbor_count = 0;
ArrayList<int[]> neighbors = getNeighbors(x,y);
for(int[] neighbor: neighbors){
int tempX = neighbor[0];
int tempY = neighbor[1];
int temp = tempMatrix[tempX][tempY];
if(temp == 1){
neighbor_count++;
}
}
if(tempMatrix[x][y] == 1){
if(neighbor_count == 1 || neighbor_count > 3) {
outputMatrix[x][y] = 0;
}
else{
outputMatrix[x][y] = 1;
}
}else if(neighbor_count == 3){
outputMatrix[x][y] = 1;
}else{
outputMatrix[x][y] = 0;
}
System.out.printf("%2d ",outputMatrix[x][y]);
}
System.out.println();
}
return outputMatrix;
}

最佳答案

您的 inputMatrix outputMatrixtempMatrix 引用相同的二维数组。因此,当您通过以下代码修改outputMatrix

if(tempMatrix[x][y] == 1){
if(neighbor_count == 1 || neighbor_count > 3) {
outputMatrix[x][y] = 0;
}
else{
outputMatrix[x][y] = 1;
}
}else if(neighbor_count == 3){
outputMatrix[x][y] = 1;
}else{
outputMatrix[x][y] = 0;
}

tempMatrix 的值也会发生变化。因此,尝试为所有三个矩阵创建新的二维数组,然后复制该值。

int inputMatrix[][]=new int[dimension][dimension];

现在将 _array 矩阵的值复制到 inputMatrix

关于java - 读取二维数组的问题 - Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46730715/

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