1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
public static void quickSort(int[] arr, int left, int right) { if(left >= right){ return; } int partionIndex = partition(arr, left, right); quickSort(arr, left, partionIndex - 1); quickSort(arr, partionIndex + 1, right); }
public static int partition(int[] arr, int left, int right){
int pivot = arr[right]; int i = left - 1; for(int j = left; j < right; j++){ if (arr[j] < pivot){ i++; int temp = arr[i]; arr[i] = arr[j]; arr[j] = temp; } }
int temp = arr[i + 1]; arr[i + 1] = arr[right]; arr[right] = temp; return i + 1; }
|