java
import java.util.HashMap;
public class CharacterCount {
public static HashMap count(String str) {
HashMap map = new HashMap<>();
char[] chars = str.toCharArray();
for (char c : chars) {
if (map.containsKey(c)) {
map.put(c, map.get(c) + 1);
} else {
map.put(c, 1);
}
}
return map;
}
public static void main(String[] args) {
String str = "Hello, World!";
HashMap countMap = count(str);
for (char c : countMap.keySet()) {
System.out.println("Character: " + c + " Count: " + countMap.get(c));
}
}
}
顶一下
(0)
0%
踩一下
(0)
0%
- 相关评论
- 我要评论
-
上一篇:河北教育考试院计算机二级报名
下一篇:计算机四级 操作系统