โ Back to Miscellaneous
Question 409
Word Frequency with TreeMap
Word Frequency with TreeMap
The arraywords = {"apple", "banana", "apple", "cherry", "banana", "apple"}is given. Count how many times each word appears and print one line per word in the formword: count, with the words in alphabetical order: apple: 3 banana: 2 cherry: 1 Use aTreeMap<String, Integer>(which keeps its keys sorted) together withgetOrDefaultto update the counts.
Expected Output:
apple: 3 banana: 2 cherry: 1
Topics:
Miscellaneous
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.