package Sorting; public class SelectionSorter extends Sorter { //a class to sort an array of numbers using selection sort public SelectionSorter(RandomNumberFileReader reader){ super("selection sort", reader); } void sort(){ for(int i=0;i0){ currentMinIndex = j; } } swap(i,currentMinIndex); } } }