leetcode 215 Kth Largest Element in an Array : 快排

Posted bella2017

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 215 Kth Largest Element in an Array : 快排相关的知识,希望对你有一定的参考价值。

技术分享图片

在无序的数组中找到第k大的元素,也就是若长度为n的数组从小到大排列时,下标为n-k的元素。

注意Example2:第4大的元素是4,也就是数组中出现的两个5分别是第2大和第3大的数字。                   

解法一:直接将数组从大到小排序,取出下标为n-k的元素。

class Solution {
public:
    int findKthLargest(vector<int>& nums, int k) {
        sort(nums.begin(), nums.end());
        return nums[nums.size() - k];
    }
};

解法二:

以上是关于leetcode 215 Kth Largest Element in an Array : 快排的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode OJ 215. Kth Largest Element in an Array 堆排序求解

LN : leetcode 215 Kth Largest Element in an Array

[LeetCode] 215. Kth Largest Element in an Array

leetcode 215. Kth Largest Element in an Array

[leetcode-215-Kth Largest Element in an Array]

Leetcode 215: Kth Largest Element in an Array