需求:统计字符串中每个字符出现的次数
*
* 分析:双线程,hashmap<出现的数字,出现的次数> 把字符串变为字符数组,然后遍历,给hashmap添加, 键盘输入
*/
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("输入:");
String str = sc.nextLine();
char[] arr = str.toCharArray();
TreeMap<Character, Integer> tm=new TreeMap<>();
//ArrayList<Character> list=new ArrayList<>();
//采用for循环
for (char c : arr) {
//hm.put(c, hm.get(c)+1);
if(!tm.containsKey(c)){
tm.put(c,1);
}else {
tm.put(c, tm.get(c)+1);
}
}for (char key : tm.keySet()) {
System.out.println(key+"="+tm.get(key));
}
}
}//字符串和数字都可以;
|
|