JavaAlgorithms/Sorts/ShellSort.java

50 lines
1.0 KiB
Java
Raw Normal View History

2018-11-14 01:15:47 +08:00
package Sorts;
2017-09-29 00:33:36 +08:00
2018-11-14 01:15:47 +08:00
import static Sorts.SortUtils.*;
2017-09-29 00:33:36 +08:00
/**
* @author dpunosevac
* @author Podshivalov Nikita (https://github.com/nikitap492)
* @see SortAlgorithm
2017-09-29 00:33:36 +08:00
*/
public class ShellSort implements SortAlgorithm {
2017-09-29 00:33:36 +08:00
/**
* This method implements Generic Shell Sort.
*
* @param array The array to be sorted
*/
@Override
public <T extends Comparable<T>> T[] sort(T[] array) {
int N = array.length;
int h = 1;
while (h < N / 3) {
h = 3 * h + 1;
}
2017-09-29 00:33:36 +08:00
while (h >= 1) {
for (int i = h; i < N; i++) {
for (int j = i; j >= h && less(array[j], array[j - h]); j -= h) {
swap(array, j, j - h);
}
}
h /= 3;
2017-09-29 00:33:36 +08:00
}
return array;
2017-09-29 00:33:36 +08:00
}
public static void main(String[] args) {
Integer[] toSort = {4, 23, 6, 78, 1, 54, 231, 9, 12};
2017-09-29 00:33:36 +08:00
ShellSort sort = new ShellSort();
Integer[] sorted = sort.sort(toSort);
2017-09-29 00:33:36 +08:00
print(sorted);
2017-09-29 00:33:36 +08:00
}
2017-09-29 00:33:36 +08:00
}