LeetCode215. 数组中的第K个最大元素

Posted 可持续化发展

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode215. 数组中的第K个最大元素相关的知识,希望对你有一定的参考价值。

给定整数数组 nums 和整数 k,请返回数组中第 k 个最大的元素。

请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。

示例 1:

输入: [3,2,1,5,6,4] 和 k = 2
输出: 5
示例 2:

输入: [3,2,3,1,2,4,5,5,6] 和 k = 4
输出: 4

 

 

 快速排序的

最差的时间复杂度为O()

 快速排序的解法,一轮for循环会排好一个基数的位置。从小到大。我们只关注第K大的元素所在的区间。往这个区间去做递归。随机选取一个基数,经过运算后,发现当前基数是第几大的数。就将当前区间划分为了两部分。如果当前基数不是第K大的,我们就往第K大所在的区间,做递归。

class Solution {
    Random random = new Random();
    public int findKthLargest(int[] nums, int k) {
        return quickSelect(nums, 0, nums.length - 1, nums.length - k);
    }

    public int quickSelect(int[] a, int l, int r, int index){
        int q = randomPartition(a, l, r);
        if(q == index){
            return a[q];
        }
        else{
            return q < index?quickSelect(a, q+1, r, index) : quickSelect(a, l, q-1, index);
        }
    }

    public int randomPartition(int[] a, int l, int r) {
        int i = random.nextInt(r - l +1) +l;//生成的随机数在区间[l, r]中
    	//将随机选取的索引对应的元素作为基数,将基数移到区间的最右边
        swap(a, i, r);
        //排好基数的位置        
    	return partition(a, l, r);
    }
    
    public int partition(int[] a, int l, int r) {
    	int x = a[r];//保存基数
    	//用来定位基数应该放到哪个位置,表示这个区间从索引j到索引i,都是比基数小的数
    	//到时候,只要把索引r处的基数放到索引i+1处即可
    	int i = l -1;
    	for(int j = l; j < r; ++j) {
    		if(a[j] <= x) {
    			swap(a, ++i, j);
    		}
    	}
    	swap(a, i+1, r);
    	return i +1;
    }
    
    public void swap(int[] a, int i, int j) {
    	int temp = a[i];
    	a[i] = a[j];
    	a[j] = temp;
    }
}

以上是关于LeetCode215. 数组中的第K个最大元素的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 215. 数组中的第K个最大元素 | Python

LeetCode215. 数组中的第K个最大元素

leetcode笔记215. 数组中的第K个最大元素

[LeetCode]215. 数组中的第K个最大元素(堆)

leetcode 215. 数组中的第K个最大元素(快速排序)

Leetcode 215. 数组中的第K个最大元素