Skip to content

Commit c231b9c

Browse files
committed
增加参考资料
1 parent 00bf0e6 commit c231b9c

File tree

4 files changed

+18
-11
lines changed

4 files changed

+18
-11
lines changed

docs/0215-kth-largest-element-in-an-array.adoc

+12-8
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,6 @@
33

44
https://leetcode.com/problems/kth-largest-element-in-an-array/[LeetCode - Kth Largest Element in an Array]
55

6-
没想到竟然可以使用快排的套路来解决这个问题。
7-
8-
image::images/0215-01.gif[{image_attr}]
9-
10-
== 参考资料
11-
12-
. https://en.wikipedia.org/wiki/Quickselect[Quickselect - Wikipedia]
13-
146
Find the *k*th largest element in an unsorted array. Note that it is the kth largest element in the sorted order, not the kth distinct element.
157
168
*Example 1:*
@@ -35,7 +27,13 @@ Find the *k*th largest element in an unsorted array. Note that it is the kth lar
3527
3628
You may assume k is always valid, 1 ≤ k ≤ array's length.
3729
30+
== 思路分析
3831
32+
没想到竟然可以使用快排的套路来解决这个问题。
33+
34+
image::images/0215-01.gif[{image_attr}]
35+
36+
image::images/0215-02.png[{image_attr}]
3937
4038
[[src-0215]]
4139
[{java_src_attr}]
@@ -48,4 +46,10 @@ include::{sourcedir}/_0215_KthLargestElementInAnArray.java[tag=answer]
4846
include::{sourcedir}/_0215_KthLargestElementInAnArray_2.java[tag=answer]
4947
----
5048
49+
== 参考资料
50+
51+
. https://en.wikipedia.org/wiki/Quickselect[Quickselect - Wikipedia]
52+
. https://leetcode.cn/problems/kth-largest-element-in-an-array/solutions/307351/shu-zu-zhong-de-di-kge-zui-da-yuan-su-by-leetcode-/[215. 数组中的第K个最大元素 - 官方题解^]
53+
. https://leetcode.cn/problems/kth-largest-element-in-an-array/solutions/2361969/215-shu-zu-zhong-de-di-k-ge-zui-da-yuan-d786p/[215. 数组中的第K个最大元素 - 分治,清晰图解^]
54+
5155

docs/images/0215-02.png

83.2 KB
Loading

src/main/java/com/diguage/algo/leetcode/_0215_KthLargestElementInAnArray.java

+3
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ private int quickselect(int left, int right, int kSmallest) {
8585
* Memory Usage: 41.4 MB, less than 5.18% of Java online submissions for Kth Largest Element in an Array.
8686
*
8787
* Copy from: https://leetcode.cn/problems/kth-largest-element-in-an-array/solutions/307351/shu-zu-zhong-de-di-kge-zui-da-yuan-su-by-leetcode-/[数组中的第K个最大元素-题解^]
88+
*
89+
* @author D瓜哥 · https://www.diguage.com
90+
* @since 2020-01-26 19:39
8891
*/
8992
public int findKthLargest(int[] nums, int k) {
9093
this.nums = nums;

src/main/java/com/diguage/algo/leetcode/_0215_KthLargestElementInAnArray_2.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
* *Note:*
2525
*
2626
* You may assume k is always valid, 1 ≤ k ≤ array's length.
27-
*
28-
* @author D瓜哥 · https://www.diguage.com
29-
* @since 2020-01-26 18:00
3027
*/
3128
public class _0215_KthLargestElementInAnArray_2 {
3229
// tag::answer[]
3330
/**
3431
* 参考 https://leetcode.cn/problems/kth-largest-element-in-an-array/solutions/307351/shu-zu-zhong-de-di-kge-zui-da-yuan-su-by-leetcode-/[数组中的第K个最大元素-题解^] 思路后,自己写出来的。
32+
*
33+
* @author D瓜哥 · https://www.diguage.com
34+
* @since 2024-06-18 17:13
3535
*/
3636
public int findKthLargest(int[] nums, int k) {
3737
int size = nums.length;

0 commit comments

Comments
 (0)