FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/code/lc347.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
/
lc347.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
62 lines (60 loc) · 2.42 KB
Breadcrumbs
leetcode
/
code
/
lc347.java
Copy path
File metadata and controls
62 lines (60 loc) · 2.42 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package
code
;
/*
* 347. Top K Frequent Elements
* 题意:找出数组中出现次数最大的k个元素
* 难度:Medium
* 分类:Hash Table, Heap
* 思路:放入hashmap计数是基本思路,后续可以用桶排序的方法,时间复杂度为O(n)。若用优先队列,则时间复杂度为nlg(k)。
* Tips:第二部巧妙的用了桶排序,避免了比较排序的复杂度
*/
import
java
.
util
.*;
public
class
lc347
{
public
static
void
main
(
String
[]
args
) {
int
[]
nums
= {
1
,
1
,
1
,
2
,
2
,
3
};
int
k
=
2
;
System
.
out
.
println
(
topKFrequent
(
nums
,
2
));
}
public
static
List
<
Integer
>
topKFrequent
(
int
[]
nums
,
int
k
) {
HashMap
<
Integer
,
Integer
>
hm
=
new
HashMap
();
TreeMap
<
Integer
,
ArrayList
<
Integer
>>
tm
=
new
TreeMap
();
List
<
Integer
>
res
=
new
ArrayList
<>();
for
(
int
i
=
0
;
i
<
nums
.
length
;
i
++) {
//放入hashmap计数
hm
.
put
(
nums
[
i
],
hm
.
getOrDefault
(
nums
[
i
],
0
)+
1
);
}
for
(
int
i
:
hm
.
keySet
() ){
//key,value反转,放入treemap TreeMap中默认是按照升序进行排序的
int
freq
=
hm
.
get
(
i
);
if
(
tm
.
containsKey
(
freq
))
tm
.
get
(
freq
).
add
(
i
);
else
{
tm
.
put
(
freq
,
new
ArrayList
<>());
tm
.
get
(
freq
).
add
(
i
);
}
}
while
(
res
.
size
()<
k
) {
List
ls
=
tm
.
pollLastEntry
().
getValue
();
//pollLastEntry将最后一个弹出,而LastEntry只是查看
res
.
addAll
(
ls
);
}
return
res
;
}
public
List
<
Integer
>
topKFrequent2
(
int
[]
nums
,
int
k
) {
List
<
Integer
>[]
bucket
=
new
List
[
nums
.
length
+
1
];
Map
<
Integer
,
Integer
>
frequencyMap
=
new
HashMap
<
Integer
,
Integer
>();
for
(
int
n
:
nums
) {
frequencyMap
.
put
(
n
,
frequencyMap
.
getOrDefault
(
n
,
0
) +
1
);
}
for
(
int
key
:
frequencyMap
.
keySet
()) {
//桶排序,开辟一个nums.length+1的数组,因为一个数出现次数取值为[0~nums.length]
int
frequency
=
frequencyMap
.
get
(
key
);
if
(
bucket
[
frequency
] ==
null
) {
bucket
[
frequency
] =
new
ArrayList
<>();
}
bucket
[
frequency
].
add
(
key
);
}
List
<
Integer
>
res
=
new
ArrayList
<>();
for
(
int
pos
=
bucket
.
length
-
1
;
pos
>=
0
&&
res
.
size
() <
k
;
pos
--) {
if
(
bucket
[
pos
] !=
null
) {
res
.
addAll
(
bucket
[
pos
]);
}
}
return
res
;
}
}
Back
|
FazBrowse Home
|
New Git URL