如何找到Arraylist
及其索引位置的最大值?
ArrayList ar = new ArrayList();
ar.add(2); // position 0
ar.add(4); // position 1
ar.add(12); // position 2
ar.add(10); // position 3
ar.add(12); // position 4
String obj = Collections.max(ar);
int index = ar.indexOf(obj);
System.out.println("obj max value is " + obj + " and index position is " + index);
上述程序只返回输出作为第一个值为12
且索引位置为2
的最大对象。
但我的实际输出应该是索引位置2
和4
(因为最大值12
存在于两个索引位置)。
答案 0 :(得分:2)
您可以使用 Collections 查找列表的最大值,然后使用属性 indexOf 查找列表中的位置。
List<Integer> myList = new ArrayList<Integer>();
myList.add(3); // adding some values
myList.add(5);
myList.add(7);
myList.add(3);
myList.add(1);
Integer maxVal = Collections.max(myList); // should return 7
Integer maxIdx = myList.indexOf(maxVal); // should return 2 (position of the value 7)
答案 1 :(得分:1)
只需遍历列表一次,就可以使用另一个列表来推送最大数量的索引
答案 2 :(得分:1)
未测试:
public static int maxIndex(List<Integer> list) {
Integer i=0, maxIndex=-1, max=null;
for (Integer x : list) {
if ((x!=null) && ((max==null) || (x>max))) {
max = x;
maxIndex = i;
}
i++;
}
return maxIndex
}
// ...
maxIndex(Arrays.asList(1, 2, 3, 2, 1)); // => 2
maxIndex(Arrays.asList(null, null)); // => -1
maxIndex(new ArrayList<Integer>()); // => -1
答案 3 :(得分:1)
从Java 8开始,这可以通过以下方式完成:
int index = IntStream.range(0, ar.size()).boxed()
.max(Comparator.comparing(ar::get)).orElse(-1);
答案 4 :(得分:0)
public static void main(String [] args){
List<Integer> ar=new ArrayList<Integer>();
ar.add(2); `adding the values in the list`
ar.add(5);
ar.add(6);
ar.add(4);
ar.add(6);
ar.add(5);
ar.add(6);
int max=Collections.max(ar);
while(ar.contains(max))
{
int i=ar.indexOf(max);
System.out.println("the index of 6:"+ar.indexOf(max));
ar.set(i, -1);
System.out.println(ar);
}
}