题目:
题目截图:
解题步骤:
1.构建一个最小堆,并依次把数组的值插入堆中
2.当堆的容量超过K,就删除堆顶
3.插入结束后,堆顶就是第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(i) {
return (i - 1) >> 1;
}
// 获取左子节点下标
getLeftIndex(i) {
return i * 2 + 1;
}
// 获取右子节点下标
getRightIndex(i) {
return i * 2 + 2;
}
// 上移操作
shiftUp(index) {
if (index === 0) return;
const parentIndex = this.getParentIndex(index);
if (this.heap[parentIndex] > this.heap[index]) {
this.swap(parentIndex, index);
this.shiftUp(parentIndex);
}
}
// 下移操作
shiftDown(index) {
const leftIndex = this.getLeftIndex(index);
const rightIndex = this.getRightIndex(index);
if (this.heap[index] > this.heap[leftIndex]) {
this.swap(leftIndex, index);
this.shiftDown(leftIndex);
}
if (this.heap[index] > this.heap[rightIndex]) {
this.swap(rightIndex, index);
this.shiftDown(rightIndex);
}
}
// 插入元素
insert(value) {
this.heap.push(value);
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;
}
}
/**
* @param {number[]} nums
* @param {number} k
* @return {number}
*/
var findKthLargest = function (nums, k) {
const h = new MinHeap();
nums.forEach(n => {
h.insert(n);
if (h.size() > k) h.pop();
});
return h.peek();
};
时间复杂度分析:
时间复杂度是O(n * logK),n是数组的长度,K是堆的长度,是题中的K
空间复杂度分析:
空间复杂度是O(K)
怎么样,是不是很简单,你学会了吗 ?
如果这篇文章能够帮助到您,希望您不要吝惜点赞👍👍和收藏💖💖,您的支持是我继续努力的动力 💪💪 !!!