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

溫馨提示×

Java快速排序的遞歸與非遞歸實現

小樊
88
2024-09-09 18:33:19
欄目: 編程語言

Java中快速排序算法的遞歸和非遞歸實現都是常見的排序方法。下面分別給出兩種實現方式的代碼示例:

  1. 遞歸實現:
public class QuickSortRecursive {
    public static void main(String[] args) {
        int[] arr = {10, 7, 8, 9, 1, 5};
        quickSort(arr, 0, arr.length - 1);
        System.out.println(Arrays.toString(arr));
    }

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

    public static void swap(int[] arr, int i, int j) {
        int temp = arr[i];
        arr[i] = arr[j];
        arr[j] = temp;
    }
}
  1. 非遞歸實現:
import java.util.Arrays;
import java.util.Stack;

public class QuickSortNonRecursive {
    public static void main(String[] args) {
        int[] arr = {10, 7, 8, 9, 1, 5};
        quickSort(arr);
        System.out.println(Arrays.toString(arr));
    }

    public static void quickSort(int[] arr) {
        Stack<Integer> stack = new Stack<>();
        stack.push(0);
        stack.push(arr.length - 1);

        while (!stack.isEmpty()) {
            int high = stack.pop();
            int low = stack.pop();

            if (low< high) {
                int pivotIndex = partition(arr, low, high);
                stack.push(low);
                stack.push(pivotIndex - 1);
                stack.push(pivotIndex + 1);
                stack.push(high);
            }
        }
    }

    public static 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++;
                swap(arr, i, j);
            }
        }
        swap(arr, i + 1, high);
        return i + 1;
    }

    public static void swap(int[] arr, int i, int j) {
        int temp = arr[i];
        arr[i] = arr[j];
        arr[j] = temp;
    }
}

這兩個示例中,遞歸實現使用了函數調用棧來存儲待處理的子數組的邊界,而非遞歸實現使用了一個顯式的棧來達到相同的目的。在實際應用中,選擇哪種實現方式取決于特定問題和需求。

0
新郑市| 武山县| 固原市| 阿坝| 开封市| 彰化市| 陵水| 贞丰县| 木兰县| 兴国县| 平阴县| 平顶山市| 台中县| 永仁县| 贵定县| 中山市| 九江市| 博罗县| 巴林左旗| 宁蒗| 浦东新区| 稷山县| 潼南县| 策勒县| 怀化市| 长春市| 京山县| 扎兰屯市| 镇赉县| 健康| 客服| 抚松县| 阿尔山市| 南昌市| 临颍县| 茂名市| 土默特左旗| 丹阳市| 东至县| 张家口市| 乌什县|