본문 바로가기
프로그래밍/알고리즘

버블소팅

by ILove_NS_MoKa 2019. 8. 21.

내림차순으로 정렬하실경우 예제의 IF문의 부등호방향만 바꿔주시면 됩니다.

 

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
# include <stdio.h>
# define MAX_SIZE 5
 
// 버블 정렬
void bubble_sort(int list[], int n) 
{
    int i, j, temp;
    for (int i = 0; i < n; i++
    {
        for (int j = 0; j < n - i - 1; j++
        {
            if (list[j] > list[j + 1]) 
            {
                temp = list[j];
                list[j] = list[j + 1];
                list[j + 1= temp;
            }
        }
    }
}
 
void main() 
{
    int i;
    const int n = MAX_SIZE;
    int list[n] = { 74513 };
 
    bubble_sort(list, n);
 
    for (i = 0; i < n; i++) {
        printf("%d\n", list[i]);
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

출처

https://coding-factory.tistory.com/133

 

[C언어] 버블정렬 (배열에 있는 정수값 오름차순 정렬하기)

정렬(Sort)하는 방법을 포스팅합니다. 정렬하는 방법은 대표적으로 버블정렬,선택정렬,삽입정렬 이렇게 3가지가 있습니다. 차례대로 한번 알아보도록 하죠 먼저 이번 포스팅에서는 버블정렬에 대해 포스팅하도록..

coding-factory.tistory.com

 

'프로그래밍 > 알고리즘' 카테고리의 다른 글

별찍기  (0) 2019.08.22
백준 10817 세수  (0) 2019.08.21
백준 2884 알람 시계  (0) 2019.08.20
백준 2753 윤년  (0) 2019.08.20
백준 9498 시험성적  (0) 2019.08.20