int findKth(int* a, int aLen, int n, int K ) { // write code here int max, temp;//最大值和下标 int i,j; for(j=0; j<K; j++) { max = 0; for(i=1; i<n-j; i++) { if(a[max] < a[i]) max = i; } temp = a[max]; a[max] = a[i-1...