Guys I have an ArrayList which contains approx 3000 double values.
I basically need the ordered indexes of the top 100 doubles in the ArrayList. I am not concerned with the actual values of the top 100, just their indexes in the order of maximum to minimum.
For example if the largest values (from max to min) in the ArrayList are index50, index27 and index96, then I am only concerend with 50, 27, 96, in THAT exact order.
Code for the ArrayList:
ArrayList<Double> ids = new ArrayList<Double>();
The resulting set or list of indexes may be contained in ANY data structure which maintains the order of 50, 27, 96, such as an ArrayList or any other collection type.
In Summary:
How do I return the index numbers of the highest 100 values (doubles) in an ArrayList?
Any assistance appreciated guys,