题解 | #寻找第K大#

寻找第K大

https://www.nowcoder.com/practice/e016ad9b7f0b45048c58a9f27ba618bf

class Solution {
public:
    int findKth(vector<int> a, int n, int K) {
        // write code here
        priority_queue<int,vector<int>,greater<int>> q;
        for(int i=0;i<K;i++)
        {
            q.push(a[i]);
        }
        for(int j=K;j<n;j++)
        {
            if(q.top()<a[j])
            {
                q.pop();
                q.push(a[j]);
            }
        }
        return q.top();
    }
};

全部评论

相关推荐

11-15 19:28
已编辑
蚌埠坦克学院 硬件开发
点赞 评论 收藏
分享
过往烟沉:我说什么来着,java就业面就是广!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务