欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HashMap统计字符串中每个字符出现的次数

程序员文章站 2022-04-18 11:53:45
...

HashMap统计字符串中每个字符出现的次数

import java.util.HashMap;

public class Demo01 {

	public static void main(String[] args) {
		String string = "ask55dHA''hhluSNDG看就看";
		HashMap<Character, Integer> map = new HashMap<Character, Integer>();
		for(int i = 0;i<string.length();i++) {
			System.out.println(string.charAt(i));
			System.out.println("----华丽的分割线-------");
			int counter = 0;
			for(int j = 0;j<string.length();j++) {
				if(string.charAt(i)==string.charAt(j)) {
					counter++;
				}
			}
			map.put(string.charAt(i), counter);
		}
		System.out.println(map);
	}
}

输出

a
----华丽的分割线-------
s
----华丽的分割线-------
k
----华丽的分割线-------
5
----华丽的分割线-------
5
----华丽的分割线-------
d
----华丽的分割线-------
H
----华丽的分割线-------
A
----华丽的分割线-------
'
----华丽的分割线-------
'
----华丽的分割线-------
h
----华丽的分割线-------
h
----华丽的分割线-------
l
----华丽的分割线-------
u
----华丽的分割线-------
S
----华丽的分割线-------
N
----华丽的分割线-------
D
----华丽的分割线-------
G
----华丽的分割线-----------华丽的分割线-----------华丽的分割线-----------华丽的分割线-------
{a=1, A=1, d=1, D=1, '=2, G=1, H=1, h=2, k=1,=2, l=1, N=1,=1, s=1, S=1, 5=2, u=1}