Find the kth largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.
For example,
Given [3,2,1,5,6,4]
and k = 2, return 5.
Note:
You may assume k is always valid, 1 ≤ k ≤ array's length.
// method 1: O(nlogn) public int findKthLargest1(int[] nums, int k) { Arrays.sort(nums); return nums[nums.length - k]; } // method 2: quick select: standard recursive version public int findKthLargest2(int[] nums, int k) { quickSelect(nums, k, 0, nums.length - 1); return nums[nums.length - k]; } private static final int CUTOFF = 10; public void quickSelect(int[] nums, int k, int left, int right) { if (left + CUTOFF <= right) { int pivot = median3(nums, left, right); int i = left, j = right - 1; while (true) { while(nums[++i] < pivot) {} while(nums[--j] > pivot) {} if (i < j) { swap(nums, i, j); } else { break; } } swap(nums, i, right - 1); if (nums.length - k < i) quickSelect(nums, left, i - 1, k); else if (nums.length - k > i) quickSelect(nums, i + 1, right, k); } else { insertionSort(nums, left, right); } } private int median3(int[] nums, int left, int right) { int mid = (left + right) / 2; if (nums[mid] < nums[left]) swap(nums, left, mid); if (nums[mid] > nums[right]) swap(nums, mid, right); if (nums[mid] < nums[left]) swap(nums, left, mid); swap(nums, mid, right - 1); return nums[right - 1]; } private void swap(int[] nums, int p1, int p2) { int tmp = nums[p1]; nums[p1] = nums[p2]; nums[p2] = tmp; } private void insertionSort(int[] nums, int left, int right) { for (int i = left + 1; i <= right; i++) { if (nums[i] < nums[i - 1]) { int tmp = nums[i]; int j = i - 1; for (; j >= 0 && tmp < nums[j]; j--) { nums[j + 1] = nums[j]; } nums[j + 1] = tmp; } } }
相关推荐
java入门 java_leetcode题解之215_Kth_Largest_Element_in_an_Array
python python_leetcode题解之215_Kth_Largest_Element_in_an_Array.py
- **快速选择算法(Kth Largest Element)**: 选择一个无序数组中的第k大的元素。 #### 二分搜索扩展 - **二分搜索变体(First Position of Target)**: 在排序数组中寻找目标值的第一个位置。 - **查找插入位置(Search...
相关题目如《数组中第k个最大元素》(https://leetcode-cn.com/problems/kth-largest-element-in-an-array/)。 2. 排序问题:合并两个已排序的数组、将数字组成最大数等。例如《合并两个有序数组》...
lru缓存leetcode 力码 大批 152-最大乘积子阵列,169-多数元素,189-旋转阵列,198-房屋强盗 二分法 153-在旋转排序数组(II)中查找最小值,162-查找峰值元素 结构 155 分钟堆栈,173 二进制搜索树迭代器,HARD:...
8 Kth Largest Element in an Array 35 9 Wildcard Matching 37 10 Regular Expression Matching in Java 39 11 Merge Intervals 43 12 Insert Interval 45 13 Two Sum 47 14 Two Sum II Input array is sorted 49 ...
Array(方法1:堆 方法二:快速排序(推荐)) (面试题40:最小的k个数) LeetCode 347 Top K Frequent Elements(堆排序、桶排序) LintCode 532 Reverse Pairs(归并排序的应用)(面试题51:数组中的逆序对) ...
https://leetcode-cn.com/problems/kth-largest-element-in-an-array/ Effective Learning 快速学习法:一年搞定MIT计算机课程 斯考特的FAQ页面 计划 表头 1 2 3 4 运动 健身 刷脂 篮球 羽毛球 游泳、跑步 拳击 学习...
leetcode中国Final450_数据结构 实际上,这个存储库包含成为优秀竞争程序员最重要的数据结构和算法。 他们的名字是: Questions ----------- *Reverse the array *Find the maximum and minimum element in an array...
421 | [Maximum XOR of Two Numbers in an Array](https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array/) | [C++](./C++/maximum-xor-of-two-numbers-in-an-array.cpp) [Python](./Python/...
- Kth Largest Element(第k个最大元素) - First Position of Target(目标值首次出现的位置) - Search Insert Position(搜索插入位置) - Search for a Range(搜索范围) - First Bad Version(第一个错误...
leetcode中国大批 0. Count Prime 1. Reverse the array 2. Find the maximum and minimum element in an array 3. Find the "Kth" max and min element of an array 4. Given an array which consists of only 0, 1...
leetcode装最大水力码 解决了leetcode问题 1 . 2 . 3 . 4 . 5 . 6 . 它有 3 个解决方案,解释了 2 个解决方案,并且可以使用虚拟变量来解释第 3 个解决方案 7 . 8 . 9 . 必须解决树上的各种问题。 10 . 11 . 12 . ...
第215题是“数组中的第K个最大元素”(Find the Kth Largest Element in an Array),这是一个常见的数据结构与算法问题,考察了排序、堆和快速选择等算法知识。本题解将详细阐述如何用Python解决这个问题。 首先,...
LeetCode判断字符串是否循环 LC 算法练习 LeetCode需要重点关注的题目 简单题型 中等难度题型 kth largest element in an array . use heap, use quick select. maximal square. Use dynamic programming. use just ...
leetcode 分类数据结构 a brief introduction and explanation on interior architecture DataStructures 及其有趣的事实 1. TreeMap is created using RedBlack Tree 2. Autocomplete feature can be done through ...
7. LeetCode第703题:"Kth Largest Element in a Stream"(数据流中的第K大元素):设计一个数据结构,找到数据流中的第K个最大元素。 8. LeetCode第910题:"XOR Queries of a Subarray"(子数组异或查询):对于...
- Kth Largest Element in an Array:在未排序的数组中找到第k大的元素。 - Binary Search:二分查找法。 - First Position of Target:在有序数组中找到目标值的第一个位置。 - Search Insert Position:在排序数组...
例如,“Kth Largest Element in an Array”可以使用大顶堆找到数组中第k大的元素。 6. **回溯与剪枝**:这类问题通常要求找到所有可能的解,如“N-Queens”问题,使用回溯法可以有效地找出所有可行的皇后布局。 7...