前 K 个高频元素(leetcode - 347)
给你一个整数数组 nums 和一个整数 k ,请你返回其中出现频率前 k 高的元素。你可以按 任意顺序 返回答案。
示例
输入: nums = [1,1,1,2,2,3], k = 2
输出: [1,2]
输入: nums = [1], k = 1
输出: [1]
思路一(排序)
- 创建一个map来表示nums的数据以及出现次数的映射关系
- 将map转换为数组进行排序
- 最终得出
/**
* @param {number[]} nums
* @param {number} k
* @return {number[]}
*/
var topKFrequent = function(nums, k) {
const map = new Map();
nums.forEach( n => {
map.set(n, map.has(n) ? map.get(n) + 1 : 1)
});
const arr = Array.from(map).sort((a,b)=> b[1] - a[1]).slice(0, k);
return arr.map(n => n[0])
};
复杂度分析:
时间复杂度:O(nlogn)
空间复杂度: O(n)
思路二(堆)
- 创建一个map来表示nums的数据以及出现次数的映射关系
- 创建一个长度为k的最小堆
- 遍历数据结束后,堆再经过处理后返回
class MinHeap {
constructor() {
this.heap = [];
}
swap(i1, i2) {
const temp = this.heap[i1];
this.heap[i1] = this.heap[i2];
this.heap[i2] = temp;
}
getParentIndex(index) {
return Math.floor((index - 1) / 2);
}
getLeftIndex(index) {
return index * 2 + 1;
}
getRightIndex(index) {
return index * 2 + 2;
}
shiftUp(index) {
if (index === 0) return
const parentIndex = this.getParentIndex(index);
if (this.heap[parentIndex] && this.heap[parentIndex].value > this.heap[index].value) {
this.swap(index, parentIndex);
this.shiftUp(parentIndex)
}
}
shiftDown(index) {
if (index === this.heap.length - 1) return;
const leftIndex = this.getLeftIndex(index);
const rightIndex = this.getRightIndex(index);
if (this.heap[leftIndex] && this.heap[leftIndex].value < this.heap[index].value) {
this.swap(index, leftIndex);
this.shiftDown(leftIndex);
}
if (this.heap[rightIndex] && this.heap[rightIndex].value < this.heap[index].value) {
this.swap(index, rightIndex);
this.shiftDown(rightIndex);
}
}
insert(val) {
this.heap.push(val);
this.shiftUp(this.heap.length - 1);
}
pop() {
this.heap[0] = this.heap.pop();
this.shiftDown(0);
}
peek() {
return this.heap[0];
}
size() {
return this.heap.length;
}
}
var topKFrequent = function(nums, k) {
const map = new Map();
nums.forEach( n => {
map.set(n, map.has(n) ? map.get(n) + 1 : 1)
});
const h = new MinHeap();
for(let [key, value] of map) {
h.insert({key, value})
if(h.size() > k) {
h.pop();
}
}
return h.heap.map(n => n.key)
};
复杂度分析:
时间复杂度:O(nlogk)
空间复杂度: O(n)