I'm writing a program to compare different sorting algorithms speed. The majority of cases, I can begin each algorithms method with
long startTime = System.currentTimeMillis();
and end it with
long stopTime = System.currentTimeMillis();
long elapsedTime = stopTime - startTime;
System.out.println(elapsedTime + " milliseconds");
However, because quick sort is recursive, this wont work as it'll print a time for every recursion, rather than the total elapsed time.
My Code
public static void quickSort(int[] arr, int low, int high) {
if (arr == null || arr.length == 0)
return;
if (low >= high)
return;
// pick the pivot
int middle = low + (high - low) / 2;
int pivot = arr[middle];
// make left < pivot and right > pivot
int i = low, j = high;
while (i <= j) {
while (arr[i] < pivot) {
i++;
}
while (arr[j] > pivot) {
j--;
}
if (i <= j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
i++;
j--;
}
}
// recursively sort two sub parts
if (low < j)
quickSort(arr, low, j);
if (high > i)
quickSort(arr, i, high);
if ((low >= j) && (high <= i)) {
}
}
How can I make it so that it only runs "stopTime" the final iteration of the algorthim. Thanks