FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Java-Programs/String/StringSort.java at master · githubanalyzeruser/Java-Programs · GitHub
githubanalyzeruser
/
Java-Programs
Public
forked from
divScorp/Java-Programs
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Java-Programs
/
String
/
StringSort.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
44 lines (37 loc) · 890 Bytes
Breadcrumbs
Java-Programs
/
String
/
StringSort.java
Copy path
File metadata and controls
44 lines (37 loc) · 890 Bytes
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
package
String
;
import
java
.
util
.
Arrays
;
import
java
.
util
.
Comparator
;
public
class
StringSort
{
public
static
void
sortByLength
(
String
[]
s
) {
Arrays
.
sort
(
s
,
new
Comparator
<
String
>() {
@
Override
public
int
compare
(
String
s1
,
String
s2
) {
return
s1
.
length
()-
s2
.
length
();
}
});
}
public
static
void
sortByAlphabet
(
String
[]
s
) {
Arrays
.
sort
(
s
,
new
Comparator
<
String
>() {
@
Override
public
int
compare
(
String
s1
,
String
s2
) {
if
(
s1
.
charAt
(
0
)<
s2
.
charAt
(
0
))
return
-
1
;
return
1
;
}
});
}
public
static
void
print
(
String
[]
s
) {
for
(
String
str
:
s
) {
System
.
out
.
println
(
str
);
}
}
public
static
void
main
(
String
[]
args
) {
String
[]
s
={
"java"
,
"html"
,
"python"
,
"swift"
,
"android"
};
sortByLength
(
s
);
System
.
out
.
println
(
"Sort by length: "
);
print
(
s
);
sortByAlphabet
(
s
);
System
.
out
.
println
(
"
\n
Sort by alphabet: "
);
print
(
s
);
}
}
Back
|
FazBrowse Home
|
New Git URL