-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell_sort.java
More file actions
43 lines (35 loc) · 1.06 KB
/
shell_sort.java
File metadata and controls
43 lines (35 loc) · 1.06 KB
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
import java.util.*;
public class shell_sort
{
public static void main(String[] args) {
int[] array = { 22, 53, 33, 12, 75, 65, 887, 125, 37, 977 };
System.out.println("Before Sorting : ");
System.out.println(Arrays.toString(array));
System.out.println("===================");
System.out.println("After Sorting : ");
array = shellsort(array);
System.out.println(Arrays.toString(array));
}
private static int[] shellsort(int[] array) {
// first part uses the Knuth's interval sequence
int h = 1;
while (h <= array.length / 3) {
h = 3 * h + 1; // h is equal to highest sequence of h<=length/3
// (1,4,13,40...)
}
// next part
while (h > 0) { // for array of length 10, h=4
// This step is similar to insertion sort below
for (int i = 0; i < array.length; i++) {
int temp = array[i];
int j;
for (j = i; j > h - 1 && array[j - h] >= temp; j = j - h) {
array[j] = array[j - h];
}
array[j] = temp;
}
h = (h - 1) / 3;
}
return array;
}
}