Java:计算(和"删除")2D数组的最大值/最小值

时间:2015-10-25 14:28:10

标签: java arrays

我希望该方法计算2D数组poängInsamling中的所有最大/最小值。每个domare(=判断)为所有deltagare(=成员)提供值。我想删除每个maximum/minimum的{​​{1}}值。我现在只有deltagare个或更少的成员才能使用我的代码。

这就是我得到的:

2

在此先感谢,我一直试图解决这个问题几个小时。

修改: for (int x = 0; x < deltagare; x++) { for (int y = 0; y < domare; y++) { if (poängInsamling[y][x] == -1) { poängInsamling[y][x] = 0; break; } } } return poängInsamling; }

如果所有deltagare都具有相同的值,则所有积分都会为0。

1 个答案:

答案 0 :(得分:1)

您正在搜索整个2D数组,以便删除所有成员中的最低值和最高值,但您只想删除当前成员的最低值和最高值。如果跟踪具有最大/最小值的索引,则可以消除第二个循环。

例如,最大值(最小值相似):

    int max = -1;
    int maxIndex = -1;
    for(int i = 0; i < deltagare; i++) {
        max = -1; // clear the max value when starting with a new member
        maxIndex = -1;
        for(int t = 0; t < domare; t++) {
            if (poängInsamling[t][i] > max) {
                max = poängInsamling[t][i];
                maxIndex = t;
            }       
        }
        // clear the max value for the current member
        poängInsamling[maxIndex][i] = -1;
    }