用集合去统计字符串中每个字符串出现的次数
-
题目:键盘录入一个字符串,要求统计字符串中每个字符串出现的次数。
举例:键盘录入“aababcabcdabcde” 在控制台输出:“a(5)b(4)c(3)d(2)e(1)”
public class HashMapDemo2 {
public static void main(String[] args) {
//键盘输入一个字符串
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个字符串");
String line = sc.nextLine();
//创建HashMap集合,键是Character,值是Integer
TreeMap<Character, Integer> hm = new TreeMap<>();
//遍历字符串,得到每一个字符
for (int i = 0; i < line.length(); i++) {
char key = line.charAt(i);
//拿得到的每一个字符作为键到HashMap集合种去找对应的值,看其返回值
Integer value = hm.get(key);
if (value == null){
//如果返回值是null,说明该字符在HashMap种不存在,就把该字符作为键,1作为值存储
hm.put(key,1);
}else{
//如果返回值不是null,说明该字符在HashMap集合中存在,把该值+1,然后从新存储该字符和对应的值
value++;
hm.put(key,value);
}
}
//遍历HashMap集合,得到键和值,按照要求进行拼接
StringBuilder sb = new StringBuilder();
Set<Character> keySet = hm.keySet();
for (Character key : keySet){
Integer value = hm.get(key);
sb.append(key).append("(").append(value).append(")");
}
String result = sb.toString();
//输出结果
System.out.println(result);
}
}