LeetCode347. 前 K 个高频元素 题目描述 步骤分析 首先 用map来存储nums[]中各个数字出现的个数然后 创建也给优先队列并给它添加compare()使存储队列内的元素按照key值从小到大排列把map中的值添加到优先队列中(只加入k个元素)使优先队列中的元素就是题目所需要的定义一个数组存放最终结果 参考代码 class Solution {public int[] t
文章目录 一、题目二、题解 一、题目 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