gpt4 book ai didi

java - 如何获取元素的最后一个索引。 (元素重复几次)JAVA

转载 作者:行者123 更新时间:2023-12-01 18:24:55 26 4
gpt4 key购买 nike

我在我的驱动程序 a.indexFinder(4)a.indexFinder(2) 中使用它如果该元素不在数组中,那么我们将返回 -1

当索引为 5(我得到 -1)时,此代码有效,因为 5 不在数组中。但对于 4,它给了我前 4 个的索引。我想要最后 4 个。

int[] array = {2, 8, 8, 3, 4, 4, 4, 7}; //im suppose to find the index of the last 4.
int index = 4; //4 or 5(return -1 when element is not found)
public int findLast(int index) //this method is in my class
{
for(int index = 0; index < a.length; index++)
{
if (a[index]== key)
return index;
}
return -1;
}

最佳答案

从最后一个索引(a.length - 1)遍历到0

返回第一次遇到该键时的索引。

关于java - 如何获取元素的最后一个索引。 (元素重复几次)JAVA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26522615/

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