*/
importar java.util.*;
classCharMapDemo
{
público estático void principal(String[] args)
{
String str = "abcedsadgsadfasdfaa";
TreeMap<Caracter,Integer> tm = Pross(str);
System.out.println(tm);
}
public static TreeMap<Caracter,Inteiro> Pross(String str)
{
char[] charArray = str.toCharArray();
TreeMap<Caracter,Integer> tm = new TreeMap<Caracter,Integer>();
for (int x = 0; x < charArray.length;x++)
{
if(!tm.containsKey(charArray[x]))
{
tm.put(charArray[x],1);
}
outro
{
contagem int = tm.get(charArray[x])+1;
tm.put(charArray[x],contagem);
}
}
retornar tm;
}
}