题解 | #寻找第K大#

寻找第K大

http://www.nowcoder.com/practice/e016ad9b7f0b45048c58a9f27ba618bf

大顶堆实现

import java.util.*;

public class Solution {
    public int findKth(int[] a, int n, int K) {
        // write code here 大顶堆实现
        PriorityQueue<Integer> q=new PriorityQueue<>((o1,o2)->{
            return o2.compareTo(o1);
        });
        for(int i=0;i<n;i++){
            q.offer(a[i]);
        }
        int res=0;
        for(int i=0;i<K-1;i++){
            q.poll();
        }
        return q.peek();
    }
}
全部评论

相关推荐

11-02 09:49
已编辑
货拉拉_测试(实习员工)
热爱生活的仰泳鲈鱼求你们别卷了:没事楼主,有反转查看图片
点赞 评论 收藏
分享
躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务