Il est trivial d'écrire une fonction pour déterminer le min/max de la valeur dans un tableau, tel que:
/**
*
* @param chars
* @return the max value in the array of chars
*/
private static int maxValue(char[] chars) {
int max = chars[0];
for (int ktr = 0; ktr < chars.length; ktr++) {
if (chars[ktr] > max) {
max = chars[ktr];
}
}
return max;
}
mais n'est-ce pas déjà fait quelque part?