标签: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();
}
}
标签:kth ndk 1的个数 priority size add 个数 int public
原文地址:https://www.cnblogs.com/Jun10ng/p/12355136.html