求k个最小元素, 华为
Posted li修远
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求k个最小元素, 华为相关的知识,希望对你有一定的参考价值。
Java 大根堆,维护k个最小的元素,时间复杂度O(KlogK)。
import java.util.*;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
int n = sc.nextInt(), k = sc.nextInt();
PriorityQueue<Integer> q = new PriorityQueue<>(Collections.reverseOrder());
for(int i=0; i < n; i++) {
int t = sc.nextInt();
if(q.isEmpty() || q.size() < k) q.offer(t);
else {
int min = q.peek();
if(t < min) {
q.poll();
q.offer(t);
}
}
}
ArrayList<Integer> res = new ArrayList<>();
while(!q.isEmpty()) res.add(q.poll());
for(int i=k-1; i > 0; i--)
System.out.print(res.get(i) + " ");
System.out.println(res.get(0));
}
}
}
以上是关于求k个最小元素, 华为的主要内容,如果未能解决你的问题,请参考以下文章
华为OD机试真题Python实现整数对最小和真题+解题思路+代码(2022&2023)