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

溫馨提示×

java快速排序算法代碼怎么寫

小億
84
2024-01-22 11:25:09
欄目: 編程語言

以下是一種實現快速排序算法的Java代碼:

public class QuickSort {
    public static void main(String[] args) {
        int[] nums = {5, 2, 8, 9, 1, 3, 7};
        quickSort(nums, 0, nums.length - 1);
        for (int num : nums) {
            System.out.print(num + " ");
        }
    }

    public static void quickSort(int[] nums, int left, int right) {
        if (left < right) {
            int pivotIndex = partition(nums, left, right);
            quickSort(nums, left, pivotIndex - 1);
            quickSort(nums, pivotIndex + 1, right);
        }
    }

    public static int partition(int[] nums, int left, int right) {
        int pivot = nums[right];
        int i = left - 1;
        for (int j = left; j < right; j++) {
            if (nums[j] <= pivot) {
                i++;
                swap(nums, i, j);
            }
        }
        swap(nums, i + 1, right);
        return i + 1;
    }

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

這段代碼實現了快速排序算法。首先,在主函數中定義了一個待排序數組nums,并調用quickSort函數對其進行排序。quickSort函數采用遞歸的方式進行快速排序,其中使用partition函數確定樞紐元素的位置,并將數組劃分為兩個子數組。partition函數選擇最右邊的元素作為樞紐元素,然后遍歷數組,將小于等于樞紐元素的元素交換到左側。最后,交換樞紐元素和左側子數組的最后一個元素,返回樞紐元素的位置。swap函數用于交換數組中的兩個元素的位置。最終,排序完成后,輸出排序后的數組。

0
土默特右旗| 威远县| 通山县| 浮山县| 获嘉县| 阆中市| 沅江市| 阳谷县| 舞钢市| 房产| 稻城县| 钦州市| 土默特右旗| 驻马店市| 宝坻区| 东方市| 赤峰市| 富蕴县| 朝阳县| 华安县| 绵竹市| 子长县| 定州市| 淄博市| 安多县| 永济市| 宣城市| 双牌县| 吉安市| 横峰县| 天台县| 永吉县| 桦川县| 乐亭县| 阿瓦提县| 青神县| 衡阳县| 沁水县| 紫阳县| 鹤壁市| 永寿县|