转载:统计一串英文中出现次数最多的单词以及次数;
代码转 http://zhidao.baidu.com/link?url=cVl1QlTcYenN_dmR8PpWk5U8Dh098g6qI9jCNEyICUZ2k1Mt0qVw-b6O0bRh3P82sg3
package cn.rrl.interview;/*** 统计一串英文中出现次数最多的单词以及次数* @author lenovo**/
public class NewCountWord {/*** @param args*/public static void main(String[] args) {String str = "But by the end of the year,look to the skies above London and you'll see the usual suspects raninclouds,planes and pigeons.you might just see something else.";System.out.println(getMax(getTheChar(str)));}/*** 得到所有字母的次数* @param str* @return*/public static int[] getTheChar(String str){int[] chari = new int[26];//定义一个存储26个字母次数的int集合String [] strs = str.split("[ '.,]");StringBuffer sb = new StringBuffer();for(int i=0;i
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
