package Sorts;
import static Sorts.SortUtils.*;
/**
* @author dpunosevac
* @author Podshivalov Nikita (https://github.com/nikitap492)
* @see SortAlgorithm
*/
public class ShellSort implements SortAlgorithm {
/**
* This method implements Generic Shell Sort.
*
* @param array The array to be sorted
*/
@Override
public