前k个高频元素
前K个高频元素
给你一个整数数组 nums 和一个整数 k ,请你返回其中出现频率前 k 高的元素。你可以按 任意顺序 返回答案。
示例 1:
输入: nums = [1,1,1,2,2,3], k = 2
输出: [1,2]
class Solution{
public int[] topKFrequent(int[] nums, int k){
Map<Integer, Integer> occurrences = new HashMap<Integer, I
原创
2021-09-14 23:40:18 ·
110 阅读 ·
0 评论