解题思路:

使用快速排序

#include <vector>
class Solution {
public:
    int Partition(vector<int> &nums,int low,int high)
    {
        int pioviate = nums[low];
        while(low < high)
        {
            while(low < high && pioviate >= nums[high])
                high--;
            nums[low] = nums[high];
            while(low < high && pioviate <= nums[low])
                low++;
            nums[high] = nums[low];
        }
        nums[low] = pioviate;
        return low;
    }
    int findKth(vector<int> a, int n, int K) {
        // write code here
        int low = 0;
        int high = n-1;
        while(1)
        {
            int pioviate = Partition(a, low, high);
            if(pioviate == K-1)
                return a[pioviate];
            else if(pioviate < K-1)
            {
                low = pioviate +1;
            }
            else {
                high = pioviate -1;
            }
        }
    }
};