/////// SortAlgorithm.java /////// public interface SortAlgorithm { // sorts a in index range public void sort(Sortable a, int begin, int end); // sorts a in its entire range public void sort(Sortable a); }