为了账号安全,请及时绑定邮箱和手机立即绑定

在 int 数组中,如何返回对应于最低值的索引?

在 int 数组中,如何返回对应于最低值的索引?

汪汪一只猫 2023-08-09 16:10:12
我已经设法用“最低”变量找到数组中的最低值,但我正在寻找与数组中最低值相对应的索引。有任何想法吗?public class Marathon {    public static void main(String[] args) {        String[] names = { "Elena", "Thomas", "Hamilton", "Suzie", "Phil",                            "Matt", "Alex", "Emma", "John", "James", "Jane",                           "Emily", "Daniel", "Neda", "Aaron", "Kate" };        int[] times = { 341, 273, 278, 329, 445, 402, 388, 275, 243, 334,                         412, 393, 299, 343, 317, 265 };        for (int i = 0; i < names.length; i++) {            System.out.println(names[i] + ": " + times[i]);        }        lowesttime(names, times);    }    public static void lowesttime(String names[], int times[]) {        int lowest;        lowest = times[0];        for (int i = 1; i < times.length; i++) {            if (times[i] < lowest) {                lowest = times[i];            }        }        System.out.println(lowest);        // to access arrays names[?], times[?}        // System.out.println(names[lowest] + ": " + times[lowest]);    }}
查看完整描述

3 回答

?
慕娘9325324

TA贡献1783条经验 获得超4个赞

public static void lowesttime(String[] names, int[] times) {

    Pair<Integer, Integer> min = IntStream.range(0, times.length)

            .mapToObj(i -> new Pair<Integer, Integer>(i, times[i]))

            .reduce(new Pair<>(-1, Integer.MAX_VALUE), (r, p) ->

                r.getKey() == -1 || r.getValue() > p.getValue() ? p : r);


    String minName = p.getKey() == -1 ? "nobody" : names[p.getKey()];

    System.out.printf("Found minimum for %s at index %d, value %d%n",

        minName, min.getKey(), min.getValue());

}

我想使用 Stream 来展示:

  • IntStream.range(0, N)将给出 0, 1, 2, ..., N-1 的流。指数。

  • mapToObj转换为 a Stream<Pair<Integer, Integer>>,其中对键是索引,对值是times[index]

  • reduce将以初始对(-1,Integer.MAX_VALUE)作为结果开始,然后对于流中的每一对是否可以找到更好的最小值。

请注意,您可以只使用一对名称和时间 ( Pair<String, Integer>);不需要索引。

这里可能过于高级和具体,但它非常具有表现力干净(使用步骤而不需要局部变量)。


查看完整回答
反对 回复 2023-08-09
?
蝴蝶不菲

TA贡献1810条经验 获得超4个赞

您可以将变量设置为元素的索引,而不仅仅是获取该元素的值;


public static void lowesttime(String[] names, int[] times) {

    int lowest;

    int lowestIndex = 0;


    lowest = times[0];

    for (int i = 1; i < times.length; i++) {

        if (times[i] < lowest) {

            lowest = times[i];

            lowestIndex = i;

        }

    }

    System.out.println(lowest);

    System.out.println(lowestIndex);


    // to access arrays names[?], times[?}

    // System.out.println(names[lowest] + ": " + times[lowest]);


}


查看完整回答
反对 回复 2023-08-09
?
呼唤远方

TA贡献1856条经验 获得超11个赞

如果您已经知道最低值,则可以使用:

java.util.Arrays.asList(theArray).indexOf(lowestValue)


查看完整回答
反对 回复 2023-08-09
  • 3 回答
  • 0 关注
  • 111 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信