-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path692.前k个高频单词.js
98 lines (95 loc) · 2.19 KB
/
692.前k个高频单词.js
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
* @lc app=leetcode.cn id=692 lang=javascript
*
* [692] 前K个高频单词
*
* https://leetcode-cn.com/problems/top-k-frequent-words/description/
*
* algorithms
* Medium (42.88%)
* Likes: 68
* Dislikes: 0
* Total Accepted: 7.6K
* Total Submissions: 15.5K
* Testcase Example: '["i", "love", "leetcode", "i", "love", "coding"]\n2'
*
* 给一非空的单词列表,返回前 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 ≤ 集合元素数。
* 输入的单词均由小写字母组成。
*
*
*
*
* 扩展练习:
*
*
* 尝试以 O(n log k) 时间复杂度和 O(n) 空间复杂度解决。
*
*
*/
// @lc code=start
/**
*
* @param {string} str1
* @param {string} str2
* @returns {number}
*/
function compareStr(str1, str2) {
for (let i = 0; i < str1.length; i++) {
if (!str1[i]) return -1;
if (!str2[i]) return 1;
if (str1.charCodeAt(i) - str2.charCodeAt(i) !== 0)
return str1.charCodeAt(i) - str2.charCodeAt(i);
}
return 0;
}
/**
* @param {string[]} words
* @param {number} k
* @return {string[]}
*/
var topKFrequent = function(words, k) {
const hash = {};
for (let word of words) {
hash[word] = hash[word] ? hash[word] + 1 : 1;
}
const sortedWords = Object.entries(hash).sort(([k1, v1], [k2, v2]) => {
if (v2 - v1 !== 0) return v2 - v1;
return compareStr(k1, k2);
});
const results = [];
while (k--) {
results.push(sortedWords.shift()[0]);
}
return results;
};
// @lc code=end