遍历二维数组

ghg1uchk  于 2021-07-09  发布在  Java
关注(0)|答案(6)|浏览(379)

我有一个“连接四块板”,我用一个二维数组(数组[x][y]x=x坐标,y=y坐标)来模拟它。我必须使用“system.out.println”,所以我必须遍历行。
我需要一种迭代的方法[0,0][1,0][2,0][3,0][0,1][1,1][2,1]等等
如果我使用正常程序:

for (int i = 0; i<array.length; i++){
     for (int j = 0; j<array[i].length; j++){
        string += array[i][j];
     } System.out.println(string)

}

它不起作用,因为它以[0,0][0,1][0,2][0,3]等方式迭代
正常的过程保持在x中并递增y直到列的结尾,但是我需要说是在y中并递增x直到行的结尾。

imzjd6km

imzjd6km1#

简单的想法:获取最长行的长度,遍历每一列,如果行中有元素,则打印行的内容。由于下面的代码是在一个简单的文本编辑器中编写的,因此可能会出现一些逐个错误。

int longestRow = 0;
  for (int i = 0; i < array.length; i++) {
    if (array[i].length > longestRow) {
      longestRow = array[i].length;
    }
  }

  for (int j = 0; j < longestRow; j++) {
    for (int i = 0; i < array.length; i++) {
      if(array[i].length > j) {
        System.out.println(array[i][j]);
      }
    }
  }
fsi0uk1n

fsi0uk1n2#

//This is The easiest I can Imagine . 
 // You need to just change the order of Columns and rows , Yours is printing columns X rows and the solution is printing them rows X columns 
for(int rows=0;rows<array.length;rows++){
    for(int columns=0;columns <array[rows].length;columns++){
        System.out.print(array[rows][columns] + "\t" );}
    System.out.println();}
92vpleto

92vpleto3#

只需更改索引。在循环中,如果你处理字符串,你必须使用concat并将变量初始化为一个空的强函数,否则你会得到一个异常。

String string="";
for (int i = 0; i<array.length; i++){
    for (int j = 0; j<array[i].length; j++){
        string = string.concat(array[j][i]);
    } 
}
System.out.println(string)
t8e9dugd

t8e9dugd4#

只需将索引的顺序颠倒如下:

for (int j = 0; j<array[0].length; j++){
     for (int i = 0; i<array.length; i++){

因为所有行的列数都相同,所以您可以使用此条件j<array[0].lengt in first作为条件,因为您在对矩阵进行迭代

6ss1mwsb

6ss1mwsb5#

这些功能应该起作用。

// First, cache your array dimensions so you don't have to
//  access them during each iteration of your for loops.
int rowLength = array.length,       // array width (# of columns)
    colLength = array[0].length;    // array height (# of rows)

//     This is your function:
// Prints array elements row by row
var rowString = "";
for(int x = 0; x < rowLength; x++){     // x is the column's index
    for(int y = 0; y < colLength; y++){ // y is the row's index
        rowString += array[x][y];
    } System.out.println(rowString)
}

//      This is the one you want:
// Prints array elements column by column
var colString = "";
for(int y = 0; y < colLength; y++){      // y is the row's index
    for(int x = 0; x < rowLength; x++){  // x is the column's index
        colString += array[x][y];
    } System.out.println(colString)
}

在第一个块中,内部循环在移动到下一列之前对行中的每个项进行迭代。
在第二个块(您想要的块)中,内部循环在移动到下一行之前遍历所有列。 tl;dr: 基本上 for() 两个函数中的循环都是切换的。就这样。
我希望这能帮助您理解迭代二维数组背后的逻辑。
此外,无论您有字符串[,]还是字符串[][],这都有效

tv6aics1

tv6aics16#

把它看作是一个数组,这肯定会起作用。

int mat[][] = { {10, 20, 30, 40, 50, 60, 70, 80, 90},
                {15, 25, 35, 45},
                {27, 29, 37, 48},
                {32, 33, 39, 50, 51, 89},
              };

    for(int i=0; i<mat.length; i++) {
        for(int j=0; j<mat[i].length; j++) {
            System.out.println("Values at arr["+i+"]["+j+"] is "+mat[i][j]);
        }
    }

相关问题