알고리즘

[이코테/정렬/C++] 삽입정렬

데메즈 2023. 1. 3. 19:40
728x90
반응형
#include <bits/stdc++.h>

using namespace std;

int n = 10;
int target[10] = {7, 5, 9, 0, 3, 1, 6, 2, 4, 8};

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0); //속도 가속화

    for(int i=1; i<n; i++){
        for(int j=i; j>0; j--){
            if(target[j] < target[j-1]){
                swap(target[j], target[j-1]);
            }
            else break;
        }
    }

    for(int i=0; i<n; i++){
        cout << target[i] << ' ';
    }

    return 0;
}
728x90
반응형