美文网首页
数据结构之选择排序

数据结构之选择排序

作者: 云胡同学 | 来源:发表于2019-01-27 18:10 被阅读0次

    思路

    将待排序的数分为两部分,一部分是已排序,另一部分是未排序。

    将未排序部分中最小的数放在已排序部分后。

    过程

    选择排序

    代码

    #include<iostream>
    using namespace std;
    void selectSort(int a[], int len)
    {
        int smallestIndex;
        int i, j, temp;
        for(i = 0; i < len - 1; i++)
        {
            smallestIndex = i;
            for(j = i+1; j < len; j++)
            {
                if(a[j] < a[smallestIndex])
                {
                    smallestIndex = j;
                }
            }
            if(smallestIndex != i)
            {
                temp = a[i];
                a[i] = a[smallestIndex];
                a[smallestIndex] = temp;
            }
        }
    }
    int main()
    {
        int a[6]={5,2,4,6,1,3};
        int len = sizeof(a) / sizeof(a[0]);
        selectSort(a, len);
        for(int i = 0; i < len; i++)
        {
            cout<<a[i]<<' ';
        }
        return 0;
    }
    

    相关文章

      网友评论

          本文标题:数据结构之选择排序

          本文链接:https://www.haomeiwen.com/subject/ygknjqtx.html