亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Java快速排序的方法有哪些

小億
85
2024-05-27 15:10:15
欄目: 編程語言

Java中常用的快速排序方法有以下幾種:

  1. 使用遞歸實現的快速排序方法:
public void quickSort(int[] arr, int low, int high) {
    if (low < high) {
        int pivot = partition(arr, low, high);
        quickSort(arr, low, pivot - 1);
        quickSort(arr, pivot + 1, high);
    }
}

public int partition(int[] arr, int low, int high) {
    int pivot = arr[high];
    int i = low - 1;
    for (int j = low; j < high; 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[high];
    arr[high] = temp;
    return i + 1;
}
  1. 使用棧實現的非遞歸快速排序方法:
public void quickSort(int[] arr, int low, int high) {
    Stack<Integer> stack = new Stack<>();
    stack.push(low);
    stack.push(high);

    while (!stack.isEmpty()) {
        high = stack.pop();
        low = stack.pop();
        int pivot = partition(arr, low, high);

        if (pivot - 1 > low) {
            stack.push(low);
            stack.push(pivot - 1);
        }
        if (pivot + 1 < high) {
            stack.push(pivot + 1);
            stack.push(high);
        }
    }
}

public int partition(int[] arr, int low, int high) {
    int pivot = arr[high];
    int i = low - 1;
    for (int j = low; j < high; 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[high];
    arr[high] = temp;
    return i + 1;
}

這些方法都是基于快速排序的原理實現的,可以根據需要選擇合適的方法來實現快速排序算法。

0
三河市| SHOW| 拉孜县| 永吉县| 县级市| 四川省| 五寨县| 姚安县| 南汇区| 乐陵市| 阿克陶县| 龙游县| 益阳市| 开远市| 元朗区| 泉州市| 汝城县| 吴川市| 株洲市| 安阳市| 德化县| 洞头县| 蚌埠市| 丰县| 松原市| 辛集市| 云龙县| 亚东县| 嫩江县| 萨迦县| 南陵县| 曲松县| 莱阳市| 弥渡县| 鸡泽县| 曲靖市| 蚌埠市| 瑞昌市| 重庆市| 商南县| 托克逊县|