gpt4 book ai didi

java - 替换二维数组中的行和列

转载 作者:行者123 更新时间:2023-11-30 08:17:14 25 4
gpt4 key购买 nike

我有一个二维数组:

1 0 1 1
1 1 1 1
1 1 1 1
1 1 1 1

我必须编写一个程序来检查数组中是否有 0,如果有,则用 0 替换行和列,这样之后看起来像这样:

0 0 0 0
1 0 1 1
1 0 1 1
1 0 1 1

到目前为止,这是我的代码:

public class Run {


public static void main(String[] args){
//defining 2d array
int[][] m = { {1,0,1,1},
{1,1,1,1},
{1,1,1,1},
{1,1,1,1}};
int[][] newArray = zero(m);
//looping through the array to get rows and columns for the array
//rows
for (int i = 0; i < m.length; i++) {
//columns
for (int j = 0; j < m[0].length; j++) {
//check if the integer is the last in the row
if(j== m.length-1){
//print the rows and columns of the array(no space)
System.out.print(newArray[i][j]);
}else{
//print the rows and columns of the array(w/ space)
System.out.print(newArray[i][j] + " ");
}
}
//new line for the new row
System.out.println("");
}
}

//checks if there is a zero in the row
public static int[][] zero(int[][] m) {
//defining row length and column length
int rows = m.length;
int columns = m[0].length;
int[][] tempArray = m;

//looping through the array to get rows and columns
//rows
for (int i = 0; i < rows; i++) {
//columns
for (int j = 0; j < columns; j++) {
//if the number is 0 loop through that row and column again and change everything to 0
if(m[i][j] == 0){
//columns in that row
for(int l = 0; l < rows; l++)
{
tempArray[l][j] = 0;
}
//rows in that column
for(int l = 0; l < columns; l++)
{
tempArray[i][l] = 0;
}
}
}
}

//returning the updated array
return tempArray;
}

}

当我运行我的代码时,它返回:

0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0

但是当我取出任何一个时:

    //columns in that row
for(int l = 0; l < rows; l++)
{
tempArray[l][j] = 0;
}

    //rows in that column
for(int l = 0; l < rows; l++)
{
tempArray[l][j] = 0;
}

它返回:

0 0 0 0
1 1 1 1
1 1 1 1
1 1 1 1

1 0 1 1
1 0 1 1
1 0 1 1
1 0 1 1

最佳答案

问题是线路

int[][] tempArray = m;

这使得 tempArraym 成为完全相同的实例,因此您实际上只有一个矩阵。

相反你应该这样做

int[][] tempArray = new int[rows][columns];
for (int i = 0; i < rows; i++)
for (int j = 0; j < columns; j++)
tempArray[i][j] = m[i][j];

关于java - 替换二维数组中的行和列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27954472/

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