import java.util.ArrayList; public class Solution { public int findKth(int[] a, int n, int K) { // write code here // 思路:快排 if (0 == n) { return 0; } int[] result = quickSort(a, n); return result[K-1]; } // 快排的具体实现 pub...