-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtop_k_frequent_words.dart
60 lines (40 loc) · 1.55 KB
/
top_k_frequent_words.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
-* Top K Frequent Words *-
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.
Example 1:
Input: words = ["i","love","leetcode","i","love","coding"], k = 2
Output: ["i","love"]
Explanation: "i" and "love" are the two most frequent words.
Note that "i" comes before "love" due to a lower alphabetical order.
Example 2:
Input: words = ["the","day","is","sunny","the","the","the","sunny","is","is"], k = 4
Output: ["the","is","sunny","day"]
Explanation: "the", "is", "sunny" and "day" are the four most frequent words, with the number of occurrence being 4, 3, 2 and 1 respectively.
Constraints:
1 <= words.length <= 500
1 <= words[i].length <= 10
words[i] consists of lowercase English letters.
k is in the range [1, The number of unique words[i]]
Follow-up: Could you solve it in O(n log(k)) time and O(n) extra space?
*/
class A {
List<String> topKFrequent(List<String> words, int k) {
final hashMap = <String, int>{};
for (final String word in words) {
if (hashMap[word] == null) {
hashMap[word] = 1;
} else {
hashMap[word] = hashMap[word]! + 1;
}
}
final sortedHashMap = hashMap.entries.toList()
..sort((a, b) {
if (a.value.compareTo(b.value) == 0) {
return a.key.compareTo(b.key);
}
return b.value.compareTo(a.value);
});
return sortedHashMap.sublist(0, k).map((e) => e.key).toList();
}
}