200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > [java] 找出字符串中出现最多的字符和出现的次数

[java] 找出字符串中出现最多的字符和出现的次数

时间:2021-07-13 18:12:44

相关推荐

[java] 找出字符串中出现最多的字符和出现的次数

逛园子看到一童鞋做的华为上机题目,写来好长的代码,懒得看,感觉不可能这么难,于是动手敲了下。

import java.util.Scanner;public class StringTest {/*** @param args*/public static void main(String[] args) {// TODO Auto-generated method stubScanner scanner = new Scanner(System.in);String A = scanner.nextLine();//find the char which showS the mostint[] charTable=new int[123];//A-65 Z-90//a-97 z-122int maxIndex=0;for(char c:A.toCharArray()){ charTable[c]=1+charTable[c]; if(charTable[c]>charTable[maxIndex])maxIndex=c;}System.out.println("the char is: "+(char)maxIndex+" - Times:"+charTable[maxIndex]); }}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。