FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java/sorting/ShellSort.java at master · AllAlgorithms/java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Sep 7, 2025. It is now read-only.
AllAlgorithms
/
java
Public archive
Notifications
You must be signed in to change notification settings
Fork
83
Star
116
Code
Issues
3
Pull requests
6
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
java
/
sorting
/
ShellSort.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (51 loc) · 1.74 KB
Breadcrumbs
java
/
sorting
/
ShellSort.java
Copy path
File metadata and controls
58 lines (51 loc) · 1.74 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
class
ShellSort
{
/* An utility function to print array of size n*/
static
void
printArray
(
int
arr
[])
{
int
n
=
arr
.
length
;
for
(
int
i
=
0
;
i
<
n
; ++
i
)
System
.
out
.
print
(
arr
[
i
] +
" "
);
System
.
out
.
println
();
}
/* function to sort arr using shellSort */
int
sort
(
int
arr
[])
{
int
n
=
arr
.
length
;
// Start with a big gap, then reduce the gap
for
(
int
gap
=
n
/
2
;
gap
>
0
;
gap
/=
2
)
{
// Do a gapped insertion sort for this gap size.
// The first gap elements a[0..gap-1] are already
// in gapped order keep adding one more element
// until the entire array is gap sorted
for
(
int
i
=
gap
;
i
<
n
;
i
+=
1
)
{
// add a[i] to the elements that have been gap
// sorted save a[i] in temp and make a hole at
// position i
int
temp
=
arr
[
i
];
// shift earlier gap-sorted elements up until
// the correct location for a[i] is found
int
j
;
for
(
j
=
i
;
j
>=
gap
&&
arr
[
j
-
gap
] >
temp
;
j
-=
gap
)
arr
[
j
] =
arr
[
j
-
gap
];
// put temp (the original a[i]) in its correct
// location
arr
[
j
] =
temp
;
}
}
return
0
;
}
// Driver method
public
static
void
main
(
String
args
[])
{
int
arr
[] = {
12
,
34
,
54
,
2
,
3
};
System
.
out
.
println
(
"Array before sorting"
);
printArray
(
arr
);
ShellSort
ob
=
new
ShellSort
();
ob
.
sort
(
arr
);
System
.
out
.
println
(
"Array after sorting"
);
printArray
(
arr
);
}
}
Back
|
FazBrowse Home
|
New Git URL