中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c語言排序算法代碼怎么寫

小億
82
2023-12-16 22:26:04
欄目: 編程語言

C語言中常見的排序算法有冒泡排序、插入排序、選擇排序、快速排序等。以下是這些排序算法的示例代碼:

  1. 冒泡排序(Bubble Sort):
void bubbleSort(int arr[], int n) {
    for (int i = 0; i < n-1; i++) {
        for (int j = 0; j < n-i-1; j++) {
            if (arr[j] > arr[j+1]) {
                int temp = arr[j];
                arr[j] = arr[j+1];
                arr[j+1] = temp;
            }
        }
    }
}
  1. 插入排序(Insertion Sort):
void insertionSort(int arr[], int n) {
    for (int i = 1; i < n; i++) {
        int key = arr[i];
        int j = i - 1;
        while (j >= 0 && arr[j] > key) {
            arr[j+1] = arr[j];
            j--;
        }
        arr[j+1] = key;
    }
}
  1. 選擇排序(Selection Sort):
void selectionSort(int arr[], int n) {
    for (int i = 0; i < n-1; i++) {
        int min_idx = i;
        for (int j = i+1; j < n; j++) {
            if (arr[j] < arr[min_idx]) {
                min_idx = j;
            }
        }
        int temp = arr[min_idx];
        arr[min_idx] = arr[i];
        arr[i] = temp;
    }
}
  1. 快速排序(Quick Sort):
int partition(int arr[], int low, int high) {
    int pivot = arr[high];
    int i = (low - 1);
    for (int j = low; j <= high-1; j++) {
        if (arr[j] < pivot) {
            i++;
            int temp = arr[i];
            arr[i] = arr[j];
            arr[j] = temp;
        }
    }
    int temp = arr[i+1];
    arr[i+1] = arr[high];
    arr[high] = temp;
    return (i + 1);
}

void quickSort(int arr[], int low, int high) {
    if (low < high) {
        int pi = partition(arr, low, high);
        quickSort(arr, low, pi-1);
        quickSort(arr, pi+1, high);
    }
}

以上是四種常見的排序算法的C語言示例代碼。你可以根據實際需求選擇合適的排序算法來使用。

0
河津市| 阿鲁科尔沁旗| 丽水市| 昭通市| 高州市| 济阳县| 新沂市| 宜宾县| 丹棱县| 四子王旗| 册亨县| 昌宁县| 枞阳县| 密云县| 兴业县| 阿拉善左旗| 贡觉县| 大化| 连州市| 灵武市| 开原市| 安溪县| 桂阳县| 腾冲县| 陇南市| 云南省| 三河市| 德江县| 龙泉市| 宜良县| 绍兴市| 西盟| 石城县| 宁远县| 孙吴县| 论坛| 宜良县| 冀州市| 广州市| 嘉荫县| 景宁|