其他分享
首页 > 其他分享> > HashMap统计字符串中每个字符出现的次数

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

作者:互联网

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

import java.util.HashMap;
import java.util.Map;

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}

标签:字符,HashMap,----,-------,华丽,字符串,分割线,string
来源: https://blog.csdn.net/weixin_45851945/article/details/113982850