java计算给定字符串中出现次数最多的字母和该字母出现
次数的⽅法
本⽂实例讲述了java计算给定字符串中出现次数最多的字母和该字母出现次数的⽅法。分享给⼤家供⼤家参考,具体如下:import Java.util.Collections;
import java.util.Map;
import java.util.TreeMap;
public class TestStringSplict {
public static void main(String[] args){
String str = "aaaaaaaccccccccccccccccccccccaaaabb";
//  ⽤map实现
//  TreeMap<Character,Integer> map = new TreeMap<Character,Integer>();
//  for(Character ch : CharArray()){
//    if((ch>='a' && ch<'z')||(ch>'A' && ch<'Z')){
//      Integer count = (ch);
//      map.put(ch, null==count?1:count+1);
//    }
//  }
//
//  System.out.println(Collections.max(map.values()));
//⽤普通数组实现
int[] aa = new int[60];
for(char CharArray()){
if((temp>=65 && temp<=90)||(temp>=97 && temp<=122)){
temp -= 65;
aa[temp]++;
}
字符串常量english占几个字节
}
int max = aa[0]; int position = 0;
for(int i=0;i<aa.length;i++){
if(aa[i]>max){
max = aa[i]; position = i;
}
}
System.out.println(max);
System.out.println("字母"+(char)(position+65) + "出现" + max + "次");
}
}
PS:这⾥再为⼤家推荐⼏款在线字符统计⼯具供⼤家参考:
希望本⽂所述对⼤家java程序设计有所帮助。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。