我用的是java实现快速排序,先排序好 ,然后倒着找就行了,也通过! 适合初学者学,还可以建大顶堆,建立后,每次调整根元素,然后在输出第K个即可,想要建堆算法实现的可以评论,我写出来import java.util.*;public class Solution { public int findKth(int[] a, int n, int K) { // write code here if(a.length==n){ quickSort(a,0,n-1); int p = a.length-1; ...