gpt4 book ai didi

java: if 语句跳过后面的 if 语句

转载 作者:行者123 更新时间:2023-11-30 07:12:33 26 4
gpt4 key购买 nike

我有一个 2D 字符串数组,我将通过它逐行查找最小值。当我找到最小值时,我将找到的最小值的行添加到 ArrayList 中,以在下一次迭代中跳过该行,以找到数组中第二小的数字。我这样做直到每个行号都成为 ArrayList 的一部分。

查看到目前为止我的代码:

List assignedRow = new ArrayList();    
for(int t = 0; t < excelMatrix.length-1; t++){
double lowest = Double.parseDouble(excelMatrix[0][1]);
int row = 0, column = 0;

for(int r = 0; r < excelMatrix.length-1; r++){
if(assignedRow.contains(r) == true) continue;
for(int c = 1; c < excelMatrix[r].length; c++){
double value = Double.parseDouble(excelMatrix[r][c]);
if(lowest > value) {
lowest = value;
row = r;
column = c;
}
}
}
assignedRow.add(row);
}

到目前为止,代码运行良好,直到最小值位于第 0 行。之后,它始终执行继续条件。

我现在正在寻找一些东西,可以让我使用不属于 ArrayList 的下一个更高的 r 回到 for 循环。

我希望我的问题已经说清楚了。

最佳答案

我希望这会起作用。

  List assignedRow = new ArrayList();
double lowest = 0;
while (assignedRow.size() < excelMatrix.length) {

// find intial lowest value from non assign row to compare
for (int t = 0; t < excelMatrix.length - 1; t++) {
if (!assignedRow.contains(t)) {
lowest = Double.parseDouble(excelMatrix[t][0]);
break;
}
}

int row = 0, column = 0;
for (int r = 0; r < excelMatrix.length - 1; r++) {
if (assignedRow.contains(r)) continue;
for (int c = 0; c < excelMatrix[r].length; c++) {
double value = Double.parseDouble(excelMatrix[r][c]);
if (lowest > value) {
lowest = value;
row = r;
column = c;
}
}
}
assignedRow.add(row);
}

如果最低值存储在任何行的第一列,您的代码将不起作用,因为您从列索引 1 开始迭代(第三个 for 循环 int c=1lowest = Double .parseDouble(excelMatrix[0][1])

关于java: if 语句跳过后面的 if 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38973789/

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