本文正在参加「Java主题月 - Java 刷题打卡」,详情查看 活动链接
题目描述
给一非空的单词列表,返回前 k 个出现次数最多的单词。
返回的答案应该按单词出现频率由高到低排序。如果不同的单词有相同出现频率,按字母顺序排序。
示例 1:
输入: ["i", "love", "leetcode", "i", "love", "coding"], k = 2
输出: ["i", "love"]
解析: "i" 和 "love" 为出现次数最多的两个单词,均为2次。
注意,按字母顺序 "i" 在 "love" 之前。
示例 2:
输入: ["the", "day", "is", "sunny", "the", "the", "the", "sunny", "is", "is"], k = 4
输出: ["the", "is", "sunny", "day"]
解析: "the", "is", "sunny" 和 "day" 是出现次数最多的四个单词,
出现次数依次为 4, 3, 2 和 1 次。
注意:
假定 k 总为有效值, 1 ≤ k ≤ 集合元素数。
输入的单词均由小写字母组成。
思路分析
总体思路分为三步
1.通过map统计每个单词的数量。
2.然后我们将单词和其数量放到一个对象Entry中。
3.最后,我们将所有的对象Entry进行排序操作,排序规则就是数量多的单词排在前面,数量一样多的可以用字典顺序排序。
AC代码
class Solution {
public List<String> topKFrequent(String[] words, int k) {
HashMap<String, Integer> map = new HashMap<>();
for (String word : words) {
map.put(word, map.getOrDefault(word, 0) + 1);
}
TreeSet<Entry> set = new TreeSet<>();
map.forEach((word, count) -> {
Entry entry = new Entry();
entry.word = word;
entry.count = count;
set.add(entry);
});
List<String> answer = new ArrayList<>(k);
for (Entry entry : set) {
if (answer.size() == k) {
break;
}
answer.add(entry.word);
}
return answer;
}
private static class Entry implements Comparable<Entry> {
String word;
int count;
@Override
public int compareTo(Entry o) {
if (this.count == o.count) {
return this.word.compareTo(o.word);
}
return o.count - this.count;
}
}
}
总结
思路最重要,解题前需要拟好解题思路。最好草稿上画个流程图就知道代码如何写了。