如何找到文本中最常见的单词?

时间:2020-05-28 11:02:43

标签: java arrays string oop bufferedreader

我有问题。好像我有这样的输入: “谢谢谢谢谢谢车车” 输出将是“谢谢”。如果我的单词以大写字母开头,则会以小写字母打印该单词。 我可以在解决方案中添加什么来解决该问题?

 public class Main {
 public static void main(String[] args) throws IOException {
     String line;
     String[] words = new String[100];
     Map < String, Integer > frequency = new HashMap < > ();
     BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
     while ((line = reader.readLine()) != null) {
         line = line.trim();
         if (!line.isEmpty()) {
             words = line.split("\\W+");
             for (String word: words) {
                 String processed = word.toLowerCase();
                 processed = processed.replace(",", "");

                 if (frequency.containsKey(processed)) {
                     frequency.put(processed,
                         frequency.get(processed) + 1);
                 } else {
                     frequency.put(processed, 1);
                 }
             }
         }
     }
     int mostFrequentlyUsed = 0;
     String theWord = null;

     for (String word: frequency.keySet()) {
         Integer theVal = frequency.get(word);
         if (theVal > mostFrequentlyUsed) {
             mostFrequentlyUsed = theVal;
             theWord = word;
         } else if (theVal == mostFrequentlyUsed && word.length() <
             theWord.length()) {
             theWord = word;
             mostFrequentlyUsed = theVal;
         }

     }
     System.out.printf(theWord);
 }

2 个答案:

答案 0 :(得分:1)

要让代码以输入的格式而不是小写的形式显示最常用的单词,可以在代码行下方进行更改。

String processed = word.toLowerCase();

将其更改为:

String processed = word;

但是请注意,containsKey()方法是区分大小写的,并且不会将“ Thanks”和“ thanks”视为同一个词。 < / p>

答案 1 :(得分:0)

Please find the below program which print both upper and lower case based on input.

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;

 public class Main {
 public static void main(String[] args) throws IOException {

     BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
     String[] strArr=reader.readLine().split(" ");
     String result=null;
     int maxCount=0;
     Map<String, Integer> strMap=new HashMap<String, Integer>();
     int count=0;
     for(String s:strArr){
         count=0;
         if(strMap.containsKey(s)){
             count=strMap.get(s);
             strMap.put(s,++count);
         }else{
             strMap.put(s, ++count);
         }
     }  
         //find Maximum

         for(Map.Entry<String, Integer> itr: strMap.entrySet()){

             if(maxCount==0){                
                 maxCount=itr.getValue();
                 result=itr.getKey();                
             }else{

                 if(maxCount < itr.getValue()){                  
                     maxCount=itr.getValue();
                     result=itr.getKey();
                 }
             }   
         }

         // No of occurences with count
         System.out.println("word"+ result+"count"+ maxCount);

         printInLowerOrUpperCare(result);

 }

      public static void printInLowerOrUpperCare(String result){

          if(result.charAt(0) >='a' && result.charAt(0) >= 'z' ){

              System.out.println(result.toUpperCase());
          }else{
              System.out.println(result.toLowerCase());
          }           

      }

 }