# 选择排序

# 一、思路

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

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

# 二、过程

选择排序

# 代码

#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;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41