码迷,mamicode.com
首页 > 编程语言 > 详细

【13】堆排序 最小K个数

时间:2020-02-24 00:08:30      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:i++   for   ISE   turn   least   code   ber   堆排序   return   

题目

输入整数数组 arr ,找出其中最小的 k 个数。例如,输入4、5、1、6、2、7、3、8这8个数字,则最小的4个数字是1、2、3、4。

收获

优先队列实现最小堆
(n1,n2)->n2-n1是最小堆

代码

class Solution {
    public int[] getLeastNumbers(int[] arr, int k) {
        PriorityQueue<Integer> h = new PriorityQueue<Integer>((n1,n2)->n2-n1);
        for(int i : arr){
            h.add(i);
            if(h.size()>k) h.poll();
        }
        int[] ans=new int[k];
        int i =0;
        while(!h.isEmpty()){
            ans[i++]=h.poll();
        }
        return ans;
    }
}

【13】堆排序 最小K个数

标签:i++   for   ISE   turn   least   code   ber   堆排序   return   

原文地址:https://www.cnblogs.com/Jun10ng/p/12355080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!