fork download
  1. import java.io.BufferedReader;
  2. import java.io.IOException;
  3. import java.io.InputStreamReader;
  4. import java.util.Map;
  5. import java.util.HashMap;
  6.  
  7. public class Main {
  8. private static boolean isLetter(char c) {
  9. return ('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z');
  10. }
  11.  
  12. private static void increaseFrequency(Map<String, Integer> words, String currentWord) {
  13. if (words.containsKey(currentWord)) {
  14. words.put(currentWord, words.get(currentWord) + 1);
  15. } else {
  16. words.put(currentWord, 1);
  17. }
  18. }
  19.  
  20. private static boolean isMoreFrequent(StringBuilder currentWord, StringBuilder recurrentWord, int currentOcurance, int maxOcurance) {
  21. return (currentOcurance > maxOcurance) || (currentOcurance == maxOcurance && (recurrentWord == null || recurrentWord.compareTo(currentWord) > 0));
  22. }
  23.  
  24. private static void updateRecurrentWord(StringBuilder recurrentWord, StringBuilder currentWord, int[] maxOcurance, int currentOcurance) {
  25. if (isMoreFrequent(currentWord, recurrentWord, currentOcurance, maxOcurance[0])) {
  26. recurrentWord.replace(0, recurrentWord.length(), currentWord.toString());
  27. maxOcurance[0] = currentOcurance;
  28. }
  29. }
  30.  
  31. public static String frequestWord(BufferedReader reader) throws IOException, NullPointerException {
  32. Map<String, Integer> words = new HashMap<>();
  33. StringBuilder recurrentWord = null;
  34. int[] maxOcurance = new int[1];
  35. while (reader.ready()) {
  36. String currentLine = reader.readLine();
  37. StringBuilder currentWord = new StringBuilder();
  38. boolean wasLetter = false;
  39. int length = currentLine.length();
  40. for (int i = 0; i < length; ++i) {
  41. if (isLetter(currentLine.charAt(i))) {
  42. currentWord.append(currentLine.charAt(i));
  43. wasLetter = true;
  44. } else if (wasLetter) {
  45. increaseFrequency(words, currentWord.toString());
  46. updateRecurrentWord(recurrentWord, currentWord, maxOcurance, words.get(currentWord.toString()));
  47. currentWord = new StringBuilder();
  48. wasLetter = false;
  49. }
  50. }
  51. if (currentWord.length() > 0) {
  52. increaseFrequency(words, currentWord.toString());
  53. updateRecurrentWord(recurrentWord, currentWord, maxOcurance, words.get(currentWord.toString()));
  54. }
  55. }
  56. try {
  57. return recurrentWord.toString();
  58. } catch (Exception e) {
  59. return "Nu ai introdus nici-un text.";
  60. }
  61. }
  62.  
  63. public static void main(String[] args) throws IOException, NullPointerException {
  64. System.out.println(frequestWord(reader));
  65. }
  66. }
Success #stdin #stdout 0.09s 54704KB
stdin
Standard input is empty
stdout
Nu ai introdus nici-un text.