ϣ

?

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!");

??????????????}

??????????????//

你可能感兴趣的:(ϣ)