码迷,mamicode.com
首页 > 其他好文 > 详细

飘英文单词统计

时间:2019-09-26 23:51:27      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:str   set   pack   package   read   static   div   dmi   class   

package javaClassHomework;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.TreeMap;
public class statistics
{
    public static void main(String [] args) throws IOException {
         BufferedReader br=new BufferedReader(new FileReader("C:\\Users\\Administrator\\Desktop\\kkk.txt"));        
        int c;
        TreeMap<String,Integer> hm=new TreeMap<>();
        String line;
        int kt=0;
        while((line=br.readLine())!=null) {
            String [] str=line.split("[^a-zA-Z]");            
            for(int i=0;i<str.length;i++) {
                if(!str[i].equals("")) {
            hm.put(str[i],hm.containsKey(str[i])?hm.get(str[i])+1:1);}
            }
            }    
        br.close();
        int max=0;
        for(String k: hm.keySet()) {
              if(hm.get(k)>=max) {
                  max=hm.get(k);
              }
          }
        for(String k: hm.keySet()) {
            if(hm.get(k)==max) {
                System.out.println(k+":"+hm.get(k));                    
        }    
        }              
}}

 

飘英文单词统计

标签:str   set   pack   package   read   static   div   dmi   class   

原文地址:https://www.cnblogs.com/yanwenhui/p/11595025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!