Recent Posts
«   2025/01   »
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
Today
Total
관리 메뉴

Try

[알고리즘/자료구조] 삽입정렬 (insertion sort) 본문

Algorithm/Algorithm 기초

[알고리즘/자료구조] 삽입정렬 (insertion sort)

HAS3ONG 2018. 11. 16. 18:29

삽입정렬 (insertion sort)


삽입 정렬(insertion sort)은 자료 배열의 모든 요소를 앞에서부터 차례대로 이미 정렬된 배열 부분과 비교하여, 자신의 위치를 찾아 삽입함으로써 정렬을 완성하는 알고리즘이다.





소스



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
42
43
/*
/*    
/*    khsh5592@naver.com
/*    has3ong.tistory.com
/*    
/*    2018 - 11 - 16
/*
*/
 
#include <iostream>
#include <stdio.h>
#include <conio.h>
 
using namespace std;
 
int Data[10= {95122341186311};
 
void main()
{
    int length = sizeof(Data) / sizeof(Data[0]);
 
    for(int i = 0; i<length; i++)
    {
        int temp = Data[i];
        int index = i-1;
 
        while( (index >= 0&& (Data[index] > temp))
        {
            Data[index + 1= Data[index];
            index--;
        }
        Data[index+1= temp;
 
        cout << " Data Array is [ " ;
        for (int i = 0; i < length; i++)
        {
            cout << Data[i] << " ";
        }
        cout << "] " << endl;
 
    }
    getch();
}
cs


결과화면




출처

위키피디아

https://en.wikipedia.org/wiki/Insertion_sort



Comments