FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc215.java at master · mJackie/leetcode · GitHub
mJackie
/
leetcode
Public
Notifications
You must be signed in to change notification settings
Fork
135
Star
405
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
code
/
lc215.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (37 loc) · 1.43 KB
Breadcrumbs
leetcode
/
code
/
lc215.java
Copy path
File metadata and controls
38 lines (37 loc) · 1.43 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package
code
;
/*
* 215. Kth Largest Element in an Array
* 题意:找第k大的数
* 难度:Medium
* 分类:Divide and Conquer, Heap
* 思路:快排的思想
* Tips:经典的题目,记一下代码格式,方便快速写出
* 两个点 1.降序排序 2.注意等号。 相比快排,省略了首行判断返回 和 交换
* lc912
*/
public
class
lc215
{
public
static
void
main
(
String
[]
args
) {
int
[]
nums
= {
3
,
2
,
3
,
1
,
2
,
4
,
5
,
5
,
6
};
System
.
out
.
println
(
findKthLargest
(
nums
,
4
));
}
public
static
int
findKthLargest
(
int
[]
nums
,
int
k
) {
return
quickSort
(
nums
,
0
,
nums
.
length
-
1
,
k
);
}
public
static
int
quickSort
(
int
[]
nums
,
int
left
,
int
right
,
int
k
){
int
origin_l
=
left
;
//left 和 right 移动,但要保存一下原始的值,方便递归调用
int
origin_r
=
right
;
int
cur
=
nums
[
left
];
while
(
left
<
right
) {
while
(
left
<
right
&&
nums
[
right
] <
cur
)
//降序排序,方便处理
right
--;
nums
[
left
] =
nums
[
right
];
while
(
left
<
right
&&
nums
[
left
] >=
cur
)
//注意要加个=号,上个while加也行,防止重复数字死循环
left
++;
nums
[
right
] =
nums
[
left
];
}
nums
[
left
] =
cur
;
if
(
left
==
k
-
1
)
return
cur
;
else
if
(
left
>
k
-
1
)
return
quickSort
(
nums
,
origin_l
,
left
-
1
,
k
);
else
return
quickSort
(
nums
,
left
+
1
,
origin_r
,
k
);
}
}
Back
|
FazBrowse Home
|
New Git URL