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

溫馨提示×

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
岳阳市| 新巴尔虎左旗| 安西县| 尼勒克县| 龙陵县| 安化县| 周口市| 随州市| 翁源县| 杭锦后旗| 鲜城| 溆浦县| 望奎县| 麦盖提县| 合山市| 布尔津县| 佛坪县| 博野县| 莫力| 台前县| 天全县| 油尖旺区| 荃湾区| 宣化县| 宜春市| 赫章县| 大方县| 绥棱县| 南京市| 长垣县| 新乡县| 白玉县| 马边| 永福县| 台山市| 永泰县| 浮山县| 杂多县| 越西县| 开化县| 兴文县|