Java快速排序代码
时间: 2023-09-18 15:06:31 浏览: 108
### 回答1:
Java快速排序的代码如下:
public static void quickSort(int[] array, int start, int end) {
if (array.length < 1 || start < 0 || end >= array.length || start > end)
return; int smallIndex = partition(array, start, end);
if (smallIndex > start)
quickSort(array, start, smallIndex - 1);
if (smallIndex < end)
quickSort(array, smallIndex + 1, end);
}public static int partition(int[] array, int start, int end) {
int pivot = (int) (start + Math.random() * (end - start + 1));
int smallIndex = start - 1;
swap(array, pivot, end);
for (int i = start; i <= end; i++)
if (array[i] <= array[end]) {
smallIndex++;
if (i > smallIndex)
swap(array, i, smallIndex);
}
return smallIndex;
}public static void swap(int[] array, int i, int j) {
int temp = array[i];
array[i] = array[j];
array[j] = temp;
}
### 回答2:
快速排序是一种常见且高效的排序算法,它使用递归的方式将一个未排序的数组分为两个子数组,并通过选择一个基准元素来进行划分。以下是Java实现快速排序的代码:
```java
public class QuickSort {
// 快速排序的入口函数
public static void quickSort(int[] array) {
if (array == null || array.length == 0) {
return;
}
quickSort(array, 0, array.length - 1);
}
// 快速排序的递归函数
private static void quickSort(int[] array, int left, int right) {
if (left >= right) {
return;
}
int pivot = partition(array, left, right);
quickSort(array, left, pivot - 1);
quickSort(array, pivot + 1, right);
}
// 划分函数,将数组划分为左右两个子数组
private static int partition(int[] array, int left, int right) {
int pivotIndex = left + (right - left) / 2;
int pivotValue = array[pivotIndex];
swap(array, pivotIndex, right);
int i = left;
for (int j = left; j < right; j++) {
if (array[j] < pivotValue) {
swap(array, i, j);
i++;
}
}
swap(array, i, right);
return i;
}
// 交换数组中两个元素的值
private static void swap(int[] array, int i, int j) {
int temp = array[i];
array[i] = array[j];
array[j] = temp;
}
}
```
上述代码中,quickSort()函数是快速排序的入口函数,它用于判断输入是否为空数组,然后调用递归函数quickSort()开始排序过程。递归函数quickSort()中,首先选择基准元素的索引pivot,然后调用partition()进行划分,再递归调用自身对左右两个子数组进行排序。
partition()函数用于实现划分过程,选择基准元素后,将其与最右边的元素交换位置。然后,使用两个指针i和j来遍历数组,如果发现当前元素比基准元素小,则交换i和j索引的元素,并将i指针右移。最后,将基准元素放置在正确的位置,并返回基准元素的索引。
swap()函数用于交换数组中两个元素的值,方便在划分过程中使用。
以上就是用Java实现快速排序的代码。快速排序的时间复杂度为O(nlogn),是一种非常高效的排序算法。
### 回答3:
快速排序(Quick Sort)是一种常见的排序算法,它的基本思想是通过分治的方法将一个无序的序列分割成两个子序列,然后对这两个子序列分别进行快速排序,最后将这两个子序列合并起来,从而得到一个有序的序列。Java中的快速排序代码如下:
```java
public class QuickSort {
public static void main(String[] args) {
int[] arr = {5, 3, 1, 2, 4};
quickSort(arr, 0, arr.length - 1);
System.out.println("排序结果:");
for (int i : arr) {
System.out.print(i + " ");
}
}
public static void quickSort(int[] arr, int low, int high) {
if (low < high) {
int pivotIndex = partition(arr, low, high);
quickSort(arr, low, pivotIndex - 1);
quickSort(arr, pivotIndex + 1, high);
}
}
public static int partition(int[] arr, int low, int high) {
int pivot = arr[low];
while (low < high) {
while (low < high && arr[high] >= pivot) {
high--;
}
arr[low] = arr[high];
while (low < high && arr[low] <= pivot) {
low++;
}
arr[high] = arr[low];
}
arr[low] = pivot;
return low;
}
}
```
上述代码中,首先定义了`quickSort`方法用来执行整个快速排序过程。在`quickSort`方法中,首先判断`low`是否小于`high`,如果是则继续进行排序,否则返回。然后调用`partition`方法找出基准元素,并将序列分割成两个子序列。接着分别对这两个子序列再进行快速排序操作。
在`partition`方法中,选取`low`位置的元素作为基准元素,然后通过两个指针`low`和`high`从两端开始遍历序列。当`high`指针指向的元素大于等于基准元素时,`high`指针向前移动;当`low`指针指向的元素小于等于基准元素时,`low`指针向后移动。当`low`指针和`high`指针相遇时,将基准元素放置在相遇位置,并返回相遇位置的索引。
最后,在`main`方法中定义一个待排序的数组,并调用`quickSort`方法对其进行排序。排序完成后,使用循环遍历数组,并将排序结果打印出来。
阅读全文