-
Notifications
You must be signed in to change notification settings - Fork 90
/
Top_K_Frequent_Elements.js
56 lines (41 loc) · 1.08 KB
/
Top_K_Frequent_Elements.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
/*
Top K Frequent Elements
https://leetcode.com/problems/top-k-frequent-elements/description/
Given an integer array nums and an integer k, return the k most frequent elements.
You may return the answer in any order.
Example 1:
Input: nums = [1,1,1,2,2,3], k = 2
Output: [1,2]
Example 2:
Input: nums = [1], k = 1
Output: [1]
Constraints:
1) 1 <= nums.length <= 10^5
2) -10^4 <= nums[i] <= 10^4
3) k is in the range [1, the number of unique elements in the array].
4) It is guaranteed that the answer is unique.
*/
/**
* @param {number[]} nums
* @param {number} k
* @return {number[]}
*/
var topKFrequent = function(nums, k) {
const freqMap = new Map();
const bucket = [];
const result = [];
for(let num of nums) {
freqMap.set(num, (freqMap.get(num) || 0) + 1);
}
for(let [num, freq] of freqMap) {
bucket[freq] = (bucket[freq] || new Set()).add(num);
}
for(let i = bucket.length-1; i >= 0; i--) {
if(bucket[i]) {
result.push(...bucket[i]);
if(result.length === k) break;
}
}
return result;
};
module.exports.topKFrequent = topKFrequent;