I need to get the count of the most frequently occurring element in an arrayList of Objects. I have this code and it´s working.
public static int contarRepeditos(ArrayList<Objecto> a) {
int resul = 0;
ArrayList<Integer> valores = new ArrayList<Integer>();
for (int i = 0; i < a.size(); i++) {
valores.add(a.get(i).getValor());
}
ArrayList<Integer> resultados = new ArrayList<Integer>();
for (int i = 0; i < valores.size(); i++) {
resultados.add(Collections.frequency(valores, a.get(i).getValor()));
}
resul = Collections.max(resultados);
return resul;
}
I need to know if there are a best way to do that. Thanks.
valor- is that the case? – Jon Skeet Nov 2 '11 at 15:51