java 统计字符串中每个字符出现的次数(数组或HashMap实现)
程序员文章站
2022-04-18 11:57:03
...
数组
import java.util.Scanner;
public class test {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String str1 = input.nextLine();
int[] count = new int[52]; //用来存储字母a-z A-Z出现的次数。
for(int i=0; i<str1.length(); i++){
char tmp = str1.charAt(i); //依次取出每个字母
if((tmp>=65&& tmp<=90)||(tmp>=97&& tmp<=122)){
int index = tmp - 65; //利用ascii码表,最小结果是0.
count[index] = count[index] + 1;
}
}
//循环打印每个字母出现次数
for(int j=0; j<count.length; j++){
if(count[j]!=0)
System.out.println("字母"+(char)(j+65)+"出现次数:"+count[j]);
}
}
}
HashMap
使用HashMap去实现,效率是最高的
有以下几个关键步骤:
- 将字符串转换为字符数组
- 定义双列集合,存储字符串中字符和字符出现次数
- 遍历数组拿到每一个字符,并存储在集合中(存储过程需要做判断,如果集合中不包含这个键,键的值就为1,如果包含,键的值就在原来基础上加1)
import java.util.HashMap;
import java.util.Scanner;
public class vowel {
public static void main (String args[]){
Scanner input = new Scanner(System.in);
String s = input.nextLine();
//将字符串转换成字符数组
char[] arr = s.toCharArray();
//定义双列集合,存储字符串字符以及字符出现的次数
HashMap<Character,Integer> hm = new HashMap<>();
for(char c:arr){
//如果集合中不包含这个键,就将该字符当作键,值为1存储,如果集合中包含这个键,就将值增加1存储
if(!hm.containsKey(c))
hm.put(c, 1);
else
hm.put(c,hm.get(c)+1);
}
for (Character key : hm.keySet()) //hm.keySet()代表所有键的集合
System.out.println(key + "=" + hm.get(key)); //hm.get(key)根据键获取值
}
}
上一篇: 爆囧,见识下这波醉人的夫妻
下一篇: 腌制梅菜的方法是什么?手把手教你腌制梅菜