diff --git a/Sorting/QuickSorterThreeWay.java b/Sorting/QuickSorterThreeWay.java index db5a7dc..6d7fa1c 100644 --- a/Sorting/QuickSorterThreeWay.java +++ b/Sorting/QuickSorterThreeWay.java @@ -4,15 +4,15 @@ package Sorting; * an implementation of quick sort with three-way partitioning */ -public class QuickSorterThreeWay extends Sorter{ +public class QuickSorterThreeWay extends QuickSorter{ public QuickSorterThreeWay(String filename){ super("quick sort (3-way partition)", filename); } - + /* void sort(){ quickSort(0,numbers.length-1); - } + }*/ void quickSort(int lowIndex, int highIndex){ if(compare(lowIndex,highIndex)<0){