기술 블로그

[정렬] 버블 정렬 본문

알고리즘

[정렬] 버블 정렬

parkit 2018. 9. 11. 01:23
728x90
반응형

오름차순


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
44
45
46
47
48
49
#include <iostream>
#include <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
 
using namespace std;
 
int num[1000 + 1= { 0, };
 
int Size = 0;
 
void BubbleSort()
{
    for (int i = Size - 1; i >= 0; i--)
    {
        for (int j = 0; j < i; j++)
        {
            if (num[j] >= num[j + 1])
            {
                int temp = num[j];
                num[j] = num[j + 1];
                num[j + 1= temp;
            }
        }
    }
}
 
int main(void)
{
    scanf("%d"&Size);
 
    for (int i = 0; i < Size; i++)
    {
        scanf("%d"&num[i]);
    }
 
    BubbleSort();
 
    for (int i = 0; i < Size; i++)
    {
        printf("%d\n", num[i]);    
    }
 
    return 0;
}
cs


728x90
반응형

'알고리즘' 카테고리의 다른 글

[정렬] 퀵 정렬  (0) 2018.09.18
스택(Stack)  (0) 2018.09.18
큐(Queue)  (0) 2018.09.15
[정렬] 삽입 정렬  (0) 2018.09.11
최대 힙  (0) 2018.08.26