c_cpp 选择排序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 选择排序相关的知识,希望对你有一定的参考价值。

#include <iostream>

int main() {
    const int SIZE = 10;
    int unsorted[SIZE] = {5,3,1,6,8,2,9,0,4,7};

    for(int i = 0; i < SIZE - 1; i++){
        int current_pos = i;
        for(int j = i + 1; j < SIZE; j++){
            if(unsorted[j] < unsorted[current_pos]){
                current_pos = j;
            }
        }
        int temp = unsorted[i];
        unsorted[i] = unsorted[current_pos];
        unsorted[current_pos] = temp;
        //std::cout << unsorted[i] << " " << unsorted[j] << std::endl;
    }

    for(int i = 0; i < SIZE; i++){
        std::cout << unsorted[i] << std::endl;
    }
    return 0;
}

以上是关于c_cpp 选择排序的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 选择排序

c_cpp 选择排序

c_cpp 选择排序

c_cpp 选择排序的.cpp

c_cpp 对几乎排序(或K排序)的数组进行排序,插入排序

c_cpp 找到最小长度未排序的子阵列,排序使整个数组排序