Java的快速排序怎么写
时间: 2023-02-25 16:16:44 浏览: 55
Java 快速排序的代码如下:
```
public class QuickSort {
public static void quickSort(int[] arr, int left, int right) {
if (left < right) {
int pivotIndex = partition(arr, left, right);
quickSort(arr, left, pivotIndex - 1);
quickSort(arr, pivotIndex + 1, right);
}
}
private 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++;
swap(arr, i, j);
}
}
swap(arr, i + 1, right);
return i + 1;
}
private static void swap(int[] arr, int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
```
以上代码是 Java 快速排序的一种实现方式。快速排序是一种分治算法,通过递归实现。在分治过程中,会不断地选择一个 pivot 元素,将数组划分为两部分,左边的元素都小于等于 pivot,右边的元素都大于 pivot。然后分别对左右两部分数组进行快速排序,直到数组有序为止。
阅读全文