FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode-algorithms/src/RelativeSortArray.java at master · anishLearnsToCode/leetcode-algorithms · GitHub
anishLearnsToCode
/
leetcode-algorithms
Public
Notifications
You must be signed in to change notification settings
Fork
17
Star
98
Code
Issues
0
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode-algorithms
/
src
/
RelativeSortArray.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (37 loc) · 1.3 KB
Breadcrumbs
leetcode-algorithms
/
src
/
RelativeSortArray.java
Copy path
File metadata and controls
40 lines (37 loc) · 1.3 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
import
java
.
util
.
Arrays
;
import
java
.
util
.
HashMap
;
import
java
.
util
.
Map
;
public
class
RelativeSortArray
{
public
int
[]
relativeSortArray
(
int
[]
arr1
,
int
[]
arr2
) {
final
Map
<
Integer
,
Integer
>
elementWeight
=
new
HashMap
<>();
for
(
int
i
=
0
;
i
<
arr2
.
length
;
i
++)
elementWeight
.
put
(
arr2
[
i
],
i
);
Integer
[]
array
=
arrayFrom
(
arr1
);
Arrays
.
sort
(
array
, (
o1
,
o2
) -> {
if
(
elementWeight
.
containsKey
(
o1
) &&
elementWeight
.
containsKey
(
o2
)) {
return
elementWeight
.
get
(
o1
) -
elementWeight
.
get
(
o2
);
}
if
(
elementWeight
.
containsKey
(
o1
)) {
return
-
1
;
}
if
(
elementWeight
.
containsKey
(
o2
)) {
return
1
;
}
return
Integer
.
compare
(
o1
,
o2
);
});
return
toIntArray
(
array
);
}
private
Integer
[]
arrayFrom
(
int
[]
array
) {
Integer
[]
result
=
new
Integer
[
array
.
length
];
for
(
int
index
=
0
;
index
<
array
.
length
;
index
++) {
result
[
index
] =
array
[
index
];
}
return
result
;
}
private
int
[]
toIntArray
(
Integer
[]
array
) {
int
[]
result
=
new
int
[
array
.
length
];
for
(
int
index
=
0
;
index
<
array
.
length
;
index
++) {
result
[
index
] =
array
[
index
];
}
return
result
;
}
}
Back
|
FazBrowse Home
|
New Git URL