Problem Description
Given an array of strings words
and an integer k
, return the k
most frequent strings. Return the answer sorted by the frequency from highest to lowest. Sort the words with the same frequency by their lexicographical order.
Key Insights
- Use a frequency map to count occurrences of each word.
- Utilize a priority queue (min-heap) to efficiently retrieve the top
k
frequent words. - Sort words with the same frequency lexicographically to satisfy the problem's requirements.
Space and Time Complexity
Time Complexity: O(n log(k))
Space Complexity: O(n)
Solution
To solve this problem, we can follow these steps:
- Create a frequency map using a hash table to count the occurrences of each word.
- Use a min-heap (priority queue) to keep track of the top
k
words based on their frequency. - For words with the same frequency, sort them lexicographically.
- Extract the words from the heap and return them in the required order.