class Solution { public: int findKth(vector<int> a, int n, int K) { // write code here //1.sort /*sort(a.begin(),a.end()); return a[n-K];*/ //2.大顶堆 /*priority_queue<int,vector<int>,greater<int>> small_queue; for(i...