*/
java.util.* をインポートします。
クラスCharMapDemo
{
public static void main(String[] args)
{
文字列 str = "abcedsadgsadfasdfaa";
TreeMap<Character,Integer> tm = Pross(str);
System.out.println(tm);
}
public static TreeMap<Character,Integer> Pross(String str)
{
char[] charArray = str.toCharArray();
TreeMap<Character,Integer> tm = new TreeMap<Character,Integer>();
for (int x = 0; x < charArray.length;x++)
{
if(!tm.containsKey(charArray[x]))
{
tm.put(charArray[x],1);
}
それ以外
{
int カウント = tm.get(charArray[x])+1;
tm.put(charArray[x],count);
}
}
tmを返します。
}
}