/** * Selection sort implementation * @author gtowell * created: April 10, 2020 */ public class Selection extends SortBase{ /** * Do Selection sort, in place, on provided array. Hence, this changes * the order of items in the provided array. * @param rdm the array to be sorted */ private void selectionSortIP(int[] rdm, int startLoc, int endLoc) { for (int i=startLoc; i< (endLoc-2); i++) { int lo = rdm[i]; int loi = i; for (int j=i+1; j