思路: 递归快排实现,寻找第k大的数 public class Solution { public int findKth(int[] a, int n, int K) { // write code here return quikSort(a,0,n-1,K); } private static int quikSort(int[] a, int start, int end, int k) { int temp=a[start]; int s=start,e=end; while (s<e){ while (s<e&&temp>=a[e]) e--; ...