119k views
2 votes
The text is given in a single line. For each word of the text, count the number of its occurrences before it.

JAVA

The text is given in a single line. For each word of the text, count the number of-example-1
User Brani
by
7.8k points

1 Answer

6 votes

String text = "one two one two three two four three";

String[] words = text.split(" ");

HashMap<String, Integer> wordCount = new HashMap<>();

for (int i = 0; i < words.length; i++) {

int count = 0;

if (wordCount.containsKey(words[i])) {

count = wordCount.get(words[i]);

}

wordCount.put(words[i], count + 1);

System.out.println(words[i] + ": " + count);

}

User Marsl
by
8.3k points