FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
basic-programs/Sorting/CountingSort.java at master · yodifm/basic-programs · GitHub
yodifm
/
basic-programs
Public
forked from
utkarsh-shekhar/basic-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
basic-programs
/
Sorting
/
CountingSort.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (39 loc) · 1.09 KB
Breadcrumbs
basic-programs
/
Sorting
/
CountingSort.java
Copy path
File metadata and controls
50 lines (39 loc) · 1.09 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
// Program for implementation of counting sort in java
import
java
.
util
.
Arrays
;
class
CountingSort
{
void
countSort
(
int
array
[],
int
size
) {
int
[]
output
=
new
int
[
size
+
1
];
int
max
=
array
[
0
];
for
(
int
i
=
1
;
i
<
size
;
i
++) {
if
(
array
[
i
] >
max
)
max
=
array
[
i
];
}
int
[]
count
=
new
int
[
max
+
1
];
// Initialize count array with all zeros.
for
(
int
i
=
0
;
i
<
max
; ++
i
) {
count
[
i
] =
0
;
}
// Store the count of each element
for
(
int
i
=
0
;
i
<
size
;
i
++) {
count
[
array
[
i
]]++;
}
// Store the cummulative count of each array
for
(
int
i
=
1
;
i
<=
max
;
i
++) {
count
[
i
] +=
count
[
i
-
1
];
}
for
(
int
i
=
size
-
1
;
i
>=
0
;
i
--) {
output
[
count
[
array
[
i
]] -
1
] =
array
[
i
];
count
[
array
[
i
]]--;
}
for
(
int
i
=
0
;
i
<
size
;
i
++) {
array
[
i
] =
output
[
i
];
}
}
public
static
void
main
(
String
args
[]) {
int
[]
data
= {
4
,
2
,
2
,
8
,
3
,
3
,
1
};
int
size
=
data
.
length
;
CountingSort
cs
=
new
CountingSort
();
cs
.
countSort
(
data
,
size
);
System
.
out
.
println
(
Arrays
.
toString
(
data
));
}
}
Back
|
FazBrowse Home
|
New Git URL