package Sorting; public class WordSelectionSorter extends Sorter{ public WordSelectionSorter(RandomWordFileReader reader){ super("selection sort", reader); } void sort(){ for(int i=0;i0){ currentMinIndex = j; } } swap(words,i,currentMinIndex); } } }