【重点】【堆】347.前K个高频元素

题目

最大的K个元素 => 小根堆(类似上窄下宽的梯形)

最小的K个元素 => 大根堆(类似倒三角形)

法1:小根堆

java 复制代码
class Solution {
    public int[] topKFrequent(int[] nums, int k) {
        Map<Integer, Integer> valToCountMap = new HashMap<>();
        for (int i : nums) {
            valToCountMap.put(i, valToCountMap.getOrDefault(i, 0) + 1);
        }
        PriorityQueue<int[]> queue = new PriorityQueue<>((a, b) -> a[1] - b[1]);
        for (Map.Entry<Integer, Integer> entry : valToCountMap.entrySet()) {
            int val = entry.getKey(), count = entry.getValue();
            if (queue.size() == k) {
                if (count > queue.peek()[1]) {
                    queue.poll();
                    queue.offer(new int[]{val, count});
                }
            } else {
                queue.offer(new int[]{val, count});
            }
        }

        int[] res = new int[k];
        for (int i = 0; i < k; ++i) {
            res[i] = queue.poll()[0];
        }

        return res;
    }
}
相关推荐
熬夜学编程的小王5 天前
【初阶数据结构】实现顺序结构二叉树->堆(附源码)
数据结构·算法·
IT规划师15 天前
数据结构 - 堆
数据结构·
数据结构和算法16 天前
数据结构——笛卡尔树详解
数据结构··二叉搜索树··笛卡尔树
hhhcbw1 个月前
C++ STL容器(五) —— priority_queue 底层剖析
java·数据结构·c++·stl··大根堆·小根堆
Lzc7742 个月前
堆+堆排序+topK问题
数据结构·
CH13hh2 个月前
常回家看看之house of kiwi
pwn·ctf··house
橘子真甜~2 个月前
6.1.数据结构-c/c++堆详解下篇(堆排序,TopK问题)
c语言·数据结构·c++·算法·面试·
朱皮皮呀2 个月前
数据结构-堆
数据结构·算法·二叉树··
zhoupenghui1682 个月前
数据结构-树
数据结构·二叉树···完全二叉树
蜡笔-小欣3 个月前
【数据结构】优先级队列(堆)
java·数据结构·学习·