시간복잡도
O(n^2)
// 가장 작은 수를 선택하여 좌측으로
void selectionSort(int arr[], int n)
{
int min; // 최소값
int minIndex; // 최소값 인덱스
for (int i = 0; i < n - 1; i++)
{
min = arr[i];
minIndex = i;
for (int j = i + 1; j < n; j++)
{
if (arr[j] < min)
{
min = arr[j];
minIndex = j;
}
}
arr[minIndex] = arr[i];
arr[i] = min;
}
cout << "========== selection sort ==========" << endl;
}
|
cs |
'::public > 알고리즘' 카테고리의 다른 글
퀵 정렬(Quick Sort) (0) | 2019.07.11 |
---|---|
알고리즘 시간 복잡도 (0) | 2019.06.26 |
삽입 정렬(Insertion Sort) (0) | 2019.06.18 |
버블 정렬(Bubble Sort) (0) | 2019.06.18 |
정렬(Sort) 종류 (0) | 2019.06.18 |