码迷,mamicode.com
首页 > 其他好文 > 详细

【14】N的二进制中1的个数

时间:2020-02-24 00:46:36      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:kth   ndk   1的个数   priority   size   add   个数   int   public   

class Solution {
    public int findKthLargest(int[] nums, int k) {
        PriorityQueue<Integer> h = new PriorityQueue<>((n1,n2)->n1-n2);
        for(int i:nums){
            h.add(i);
            if(h.size()>k){
                h.poll();
            }
        }
        return h.poll();
    }
}

【14】N的二进制中1的个数

标签:kth   ndk   1的个数   priority   size   add   个数   int   public   

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

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