字符串查找重复字符最多的
Posted ゞ清茶℡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串查找重复字符最多的相关的知识,希望对你有一定的参考价值。
public class FindChar{ public static void main(String[] args){ findChar("什么是什么意义咦咦咦咦"); } public static void findChar(String msg){ if(null == msg) return; Map<String,String> charMap = new HashMap<String,String>(); int base = 0; String maxChar = ""; for(int i=0; i < msg.length(); i++){ String word = String.valueOf(msg.charAt(i)); if(!charMap.containsKey(word)){ charMap.put(word, "1"); }else{ int index = Integer.valueOf(charMap.get(word)) + 1; charMap.put(word, String.valueOf(index)); if(index > base){ base = index; maxChar = word; } } } // 出现最多次数 System.out.println(base); // 出现做多次数字符 System.out.println(maxChar); } }
忘记在网上哪里看到过的。不是原创--特此声明
以上是关于字符串查找重复字符最多的的主要内容,如果未能解决你的问题,请参考以下文章
用对象存储的方法实现查找字符串或者数组中重复次数最多的元素!!!!!
2021-12-24:划分字母区间。 字符串 S 由小写字母组成。我们要把这个字符串划分为尽可能多的片段,同一字母最多出现在一个片段中。返回一个表示每个字符串片段的长度的列表。 力扣763。某大厂面试