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