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

溫馨提示×

C++快速排序法代碼怎么寫

c++
小億
79
2024-01-02 12:44:50
欄目: 編程語言

下面是一個示例的C++快速排序算法的代碼:

#include <iostream>
using namespace std;

// 交換兩個元素的值
void swap(int* a, int* b) {
    int temp = *a;
    *a = *b;
    *b = temp;
}

// 將數組劃分為兩個子數組,小于pivot的放在左邊,大于pivot的放在右邊
int partition(int arr[], int low, int high) {
    int pivot = arr[high];  // 選擇最右邊的元素作為pivot
    int i = low - 1;

    for (int j = low; j <= high - 1; j++) {
        if (arr[j] < pivot) {
            i++;
            swap(&arr[i], &arr[j]);
        }
    }
    swap(&arr[i + 1], &arr[high]);
    return i + 1;
}

// 快速排序函數
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);  // 對右子數組進行快速排序
    }
}

// 打印數組
void printArray(int arr[], int size) {
    for (int i = 0; i < size; i++) {
        cout << arr[i] << " ";
    }
    cout << endl;
}

int main() {
    int arr[] = { 8, 3, 6, 2, 1, 5, 7, 4 };
    int size = sizeof(arr) / sizeof(arr[0]);

    cout << "原數組:";
    printArray(arr, size);

    quickSort(arr, 0, size - 1);

    cout << "排序后:";
    printArray(arr, size);

    return 0;
}

這段代碼首先定義了一個用于交換兩個元素的函數swap,然后定義了一個用于將數組劃分為兩個子數組的函數partition,最后定義了一個快速排序函數quickSortquickSort函數在遞歸調用中對左右子數組進行快速排序,而partition函數則根據選定的pivot將數組進行劃分。

在主函數main中,首先定義了一個待排序的數組arr,然后調用quickSort函數進行快速排序,最后調用printArray函數打印排序后的數組。

0
大姚县| 清丰县| 黄陵县| 德江县| 鄂托克前旗| 麻栗坡县| 岑巩县| 会东县| 孝昌县| 平潭县| 顺义区| 渝北区| 东台市| 溆浦县| 积石山| 神木县| 潢川县| 贞丰县| 景泰县| 临湘市| 金堂县| 巴青县| 阿瓦提县| 当涂县| 宜州市| 钟山县| 通江县| 塔城市| 澄江县| 武冈市| 湖南省| 信丰县| 陵川县| 台南县| 永登县| 合水县| 名山县| 成武县| 新民市| 呈贡县| 瑞昌市|