ソートアルゴリズムの選択
5416 ワード
1.ソート選択?
->交換と並べ替えの最小数を選択する方法
->時間的複雑度はO(N^2)である.
=>入力が多いソートでは効率が悪い
2.実施方法
1.最小の数を探す
2.最小および現在のインデックスの交換
3.次のインデックスから最小数を再検索
4.繰り返し
ハーモニー
#include <iostream>
using namespace std;
#define n 5
int a[n] = { 5,4,3,2,1 };
void swap(int a[], int minIndex, int i) {
int temp=a[i];
a[i] = a[minIndex];
a[minIndex] = temp;
}
int main() {
for (int i = 0; i < n ; i++) {
int minIndex=i; //초기값 설정이 중요!
for (int j = i; j < n ; j++) {
if (a[minIndex] > a[j]) {
minIndex = j;
}
}
swap(a, minIndex, i);
}
for (int i = 0; i < n; i++) {
cout << a[i]<<'\n';
}
return 0;
}
Reference
この問題について(ソートアルゴリズムの選択), 我々は、より多くの情報をここで見つけました https://velog.io/@513sojin/알고리즘-선택정렬テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol