91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
墨竹工卡县| 赤壁市| 永善县| 湘潭县| 辰溪县| 剑河县| 兖州市| 柳河县| 灵川县| 苏尼特左旗| 靖江市| 乾安县| 三河市| 通城县| 陆川县| 酒泉市| 鲜城| 旌德县| 合川市| 固安县| 滕州市| 荔波县| 册亨县| 邻水| 县级市| 南投市| 民勤县| 镇安县| 西乡县| 达州市| 梁山县| 乌苏市| 彰化市| 凌云县| 页游| 宜州市| 木兰县| 女性| 宁国市| 海林市| 东安县|