键盘输入一个字符串,需要统计字符串中每个字符串出现的次数
程序员文章站
2022-04-17 22:39:17
...
键盘输入一个字符串,需要统计字符串中每个字符串出现的次数
/**
* @author Wrry
* @data 2020
* @desc 键盘输入一个字符串,需要统计字符串中每个字符串出现的次数
* <p>
* 1.键盘录入一个字符串
* 2.创建HashMap集合,键是Character,值是Integer
* 3.遍历字符串,得到每一个字符
* 4.拿得到的每一个字符作为键到HashMap集合种去找相对应的值,看其返回值
* 如果返回值是null:说明该字符在HashMap集合中不存在,就需要把该字符作为键,1作为值存储
* 如果返回值不是null:说明该字符在HashMap集合中存在,把该值加一,然后再从新存入该字符和对应值
* 5.遍历HashMap集合,得到键和值
* 6.结果输出控制台
*/
public class Test {
public static void main(String[] args) {
//键盘录入一个字符串
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个字符串");
String s = sc.nextLine();
//创建HashMap集合,键是Character,值是Integer
HashMap<Character, Integer> hashMap = new HashMap<Character, Integer>();
//遍历字符串,得到每一个字符
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
//拿得到的每一个字符作为键到HashMap集合种去找相对应的值
Integer itg = hashMap.get(c);
if (itg == null) {
//如果返回值是null:说明该字符在HashMap集合中不存在,就需要把该字符作为键,1作为值存储
hashMap.put(c, 1);
} else {
//如果返回值不是null:说明该字符在HashMap集合中存在,把该值加一,然后再从新存入该字符和对应值
itg++;
hashMap.put(c, itg);
}
}
//遍历HashMap集合,得到键和值
StringBuffer sb = new StringBuffer();
Set<Character> set = hashMap.keySet();
for (Character c : set) {
Integer values = hashMap.get(c);
sb.append(c).append("(").append(values).append(")");
}
String result = sb.toString();
//结果输出控制台
System.out.println(result);
}
}
上一篇: 司马懿真的中了空城计吗?他为何要撤兵呢?