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]; ...