【Hot100】LeetCode—215. 数组中的第K个最大元素

目录

  • [1- 思路](#1- 思路)
  • [2- 实现](#2- 实现)
    • [⭐++215. 数组中的第K个最大元素++------题解思路](#⭐215. 数组中的第K个最大元素——题解思路)
  • [3- ACM实现](#3- ACM实现)


1- 思路

快速选择

  • 第 k 大的元素的数组下标: int target = nums.length - k

1- 根据 partition 分割的区间来判断当前处理方式

  • 如果返回的 int 等于 target 说明找到了,直接返回
  • 如果返回的 int 小于 target 说明要在当前区间的右侧寻找,也就是 [pivotIndex+1,right]
  • 如果返回的 int 大于 target 说明要在当前区间的左侧寻找,也就是 [left,pivotIndex-1]

2- 实现 partition 随机选取一个 pivotIndex 分割区间

  • 2-1 随机选择一个下标
  • 2-2 交换 left 和 随机下标
  • 2-3 将随机下标的元素值设置为 pivot
  • 2-4 定义 lege 下标 使用 while(true)
    • 使得 le 指向的元素始终小于 pivot
    • 使得 ge 指向的元素始终大于 pivot

2- 实现

⭐++215. 数组中的第K个最大元素++------题解思路

java 复制代码
import java.util.Random;
class Solution {


    static Random random = new Random(System.currentTimeMillis());
    public int findKthLargest(int[] nums,int k){
        return quickSelect(nums,0,nums.length-1,nums.length-k);

    }

    public int quickSelect(int[] nums,int left,int right,int kIndex){
        if(right==left){
            return nums[left];
        }
        //
        int pivotIndex = partition(nums,left,right);

        if(pivotIndex == kIndex){
            return nums[kIndex];
        }else if( pivotIndex>kIndex){
            return quickSelect(nums,left,pivotIndex-1,kIndex);
        }else{
            return quickSelect(nums,pivotIndex+1,right,kIndex);
        }
    }

    public int partition(int[] nums,int left,int right){
        int randomIndex = left + random.nextInt(right-left+1);
        swap(nums,left,randomIndex);

        int mid = nums[left];
        int le = left+1;
        int ge = right;
        while(true){
            while(le<=ge && nums[le] < mid){
                le++;
            }
            while(le<=ge && nums[ge] > mid){
                ge--;
            }
            if(le>=ge){
                break;
            }
            swap(nums,le,ge);
            le++;
            ge--;
        }
        swap(nums,left,ge);
        return ge;
    }

    public void swap(int[] nums,int left,int right){
        int tmp = nums[left];
        nums[left] = nums[right];
        nums[right] = tmp;
    }


}

3- ACM实现

java 复制代码
public class kthNums {

    static Random random = new Random(System.currentTimeMillis());
    public static int findK(int[] nums,int k){
        // 快速选择 ,传四个参数
        return quickSelect(nums,0,nums.length-1,nums.length-k);

    }

    public static int quickSelect(int[] nums,int left,int right,int kIndex){
        if(right==left){
            return nums[left];
        }
        //
        int pivotIndex = partition(nums,left,right);

        if(pivotIndex == kIndex){
            return nums[kIndex];
        }else if( pivotIndex>kIndex){
            return quickSelect(nums,left,pivotIndex-1,kIndex);
        }else{
            return quickSelect(nums,pivotIndex+1,right,kIndex);
        }
    }

    public static int partition(int[] nums,int left,int right){
        int randomIndex = left + random.nextInt(right-left+1);
        swap(nums,left,randomIndex);

        int mid = nums[left];
        int le = left+1;
        int ge = right;
        while(true){
            while(le<=ge && nums[le] < mid){
                le++;
            }
            while(le<=ge && nums[ge] > mid){
                ge--;
            }
            if(le>=ge){
                break;
            }
            swap(nums,le,ge);
            le++;
            ge--;
        }
        swap(nums,left,ge);
        return ge;
    }

    public static void swap(int[] nums,int left,int right){
        int tmp = nums[left];
        nums[left] = nums[right];
        nums[right] = tmp;
    }

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String input = sc.nextLine();
        String[] parts = input.split(" ");
        int[] nums = new int[parts.length];
        for(int i = 0 ; i < nums.length ; i++){
            nums[i] = Integer.parseInt(parts[i]);
        }
        System.out.println("输入K");
        int k = sc.nextInt();
        System.out.println("结果是"+findK(nums,k));

    }
}
相关推荐
闻缺陷则喜何志丹4 分钟前
【C++动态规划 图论】3243. 新增道路查询后的最短距离 I|1567
c++·算法·动态规划·力扣·图论·最短路·路径
Lenyiin22 分钟前
01.02、判定是否互为字符重排
算法·leetcode
鸽鸽程序猿37 分钟前
【算法】【优选算法】宽搜(BFS)中队列的使用
算法·宽度优先·队列
Jackey_Song_Odd38 分钟前
C语言 单向链表反转问题
c语言·数据结构·算法·链表
Watermelo61741 分钟前
详解js柯里化原理及用法,探究柯里化在Redux Selector 的场景模拟、构建复杂的数据流管道、优化深度嵌套函数中的精妙应用
开发语言·前端·javascript·算法·数据挖掘·数据分析·ecmascript
乐之者v1 小时前
leetCode43.字符串相乘
java·数据结构·算法
A懿轩A2 小时前
C/C++ 数据结构与算法【数组】 数组详细解析【日常学习,考研必备】带图+详细代码
c语言·数据结构·c++·学习·考研·算法·数组
古希腊掌管学习的神2 小时前
[搜广推]王树森推荐系统——矩阵补充&最近邻查找
python·算法·机器学习·矩阵
云边有个稻草人2 小时前
【优选算法】—复写零(双指针算法)
笔记·算法·双指针算法
半盏茶香2 小时前
在21世纪的我用C语言探寻世界本质 ——编译和链接(编译环境和运行环境)
c语言·开发语言·c++·算法