Java 如何计算字符串中字符出现的最大次数
Posted hglibin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 如何计算字符串中字符出现的最大次数相关的知识,希望对你有一定的参考价值。
Java中如何计算字符串中字符出现的最大次数
import java.util.HashMap;
import java.util.Map;
public class TestStringSum {
public static void main(String[] args) {
String str = "abcdefgaaabbb";
int max = 0;
Map<Character, Integer> map = new HashMap<Character,Integer>(str.length());
for(char c :str.toCharArray()){
Integer i = map.get(c);
int value = (i==null)?0:i;
map.put(c, ++value);
max = value>max?value:max;
}
System.out.println(max); // 4
}
}
以上是关于Java 如何计算字符串中字符出现的最大次数的主要内容,如果未能解决你的问题,请参考以下文章