中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
甘谷县| 韶山市| 宜川县| 罗山县| 安义县| 政和县| 伊金霍洛旗| 依兰县| 札达县| 开化县| 那曲县| 正镶白旗| 凤翔县| 朝阳区| 辉县市| 阿克陶县| 乌拉特前旗| 沾益县| 哈巴河县| 余干县| 湟中县| 达日县| 吴忠市| 霍城县| 合水县| 达孜县| 贵港市| 湘阴县| 饶河县| 新乐市| 丽江市| 聊城市| 亳州市| 泾源县| 林芝县| 青岛市| 易门县| 宿松县| 从江县| 高清| 黄梅县|