题解 | #找到数组里的第k大数(C++)#
偷懒写法
应该用排序算法做的
#include<bits/stdc++.h>
#include <algorithm>
using namespace std;
int main(){
int n,k;
vector<int>a;
// write your code here......
cin >> n >> k;
while(n--) {
int tmp;
cin >> tmp;
a.emplace_back(tmp);
}
sort(a.begin(), a.end());
cout << a[k-1];
return 0;
}