import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here quickSort(a,0,n-1); return a[n-K]; } public void quickSort(int[] a,int begin,int end){ if(begin>=end) return; int pivot=a[begin]; int i=begin,j=end; while(i!=j){ //从右向左找小于pivot的 while(i<j...