package Utils.Sort; public class ShellSort implements SortStrategy{ ???????private int[] increment; ?????? ???????public void sort(Comparable[] obj) ???????{ ??????????????if (obj == null) ??????????????{ ?????????????????????throw new NullPointerException("The argument can not be null!"); ??????????????} ??????????????// |