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

溫馨提示×

c++快速排序算法怎么使用

c++
小億
87
2024-02-05 17:33:58
欄目: 編程語言

快速排序(QuickSort)是一種常用的排序算法,其基本思想是通過一趟排序將待排序的數據分割成獨立的兩部分,其中一部分的所有數據都比另一部分小,然后再按此方法分別對這兩部分數據進行快速排序,整個過程遞歸進行,最終得到有序的數據序列。

以下是使用C++實現快速排序算法的示例代碼:

#include<iostream>
using namespace std;

// 交換數組中兩個元素的位置
void swap(int *a, int *b) {
    int temp = *a;
    *a = *b;
    *b = temp;
}

// 分割函數,以pivot為基準將數組分割成兩部分
int partition(int arr[], int low, int high) {
    int pivot = arr[high];  // 選擇最后一個元素作為基準
    int i = low - 1;  // i指向小于基準的元素

    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 pivot_index = partition(arr, low, high);
        quickSort(arr, low, pivot_index - 1);
        quickSort(arr, pivot_index + 1, high);
    }
}

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

    quickSort(arr, 0, n - 1);

    cout << "排序后的數組:";
    for (int i = 0; i < n; i++) {
        cout << arr[i] << " ";
    }
    cout << endl;

    return 0;
}

以上代碼中,swap函數用于交換數組中兩個元素的位置,partition函數用于將數組分割成兩部分,quickSort函數用于遞歸地對兩部分進行快速排序。

main函數中,我們定義了一個待排序的數組arr,然后調用quickSort函數對該數組進行排序。最后,輸出排序后的數組。

0
崇明县| 台南县| 周口市| 博客| 太仆寺旗| 东丽区| 蓬安县| 通许县| 阳曲县| 宜昌市| 宜阳县| 佳木斯市| 巍山| 蒙山县| 常山县| 府谷县| 揭西县| 齐河县| 蒲江县| 田阳县| 永川市| 大渡口区| 秦安县| 伊通| 山东| 华阴市| 九江市| 连城县| 博爱县| 清涧县| 荆州市| 天台县| 抚远县| 天津市| 秀山| 隆昌县| 南通市| 朔州市| 泊头市| 枣阳市| 临泽县|