From d5aa4b82433eeb274490136893f17a3efb776d73 Mon Sep 17 00:00:00 2001 From: eugenefischer Date: Fri, 3 Jul 2020 17:27:37 -0500 Subject: [PATCH] clean up --- Sorting/NumberQuickSorterThreeWay.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Sorting/NumberQuickSorterThreeWay.java b/Sorting/NumberQuickSorterThreeWay.java index 9a26afb..72dc1d7 100644 --- a/Sorting/NumberQuickSorterThreeWay.java +++ b/Sorting/NumberQuickSorterThreeWay.java @@ -9,11 +9,8 @@ public class NumberQuickSorterThreeWay extends NumberQuickSorter{ public NumberQuickSorterThreeWay(RandomNumberFileReader reader){ super("quick sort (3-way partition)", reader); } - /* - void sort(){ - quickSort(0,numbers.length-1); - }*/ - + + @Override void quickSort(int lowIndex, int highIndex){ if(compare(lowIndex,highIndex)<0){ int pivot=numbers[highIndex];