내림차순으로 정렬하실경우 예제의 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] = { 7, 4, 5, 1, 3 };
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
'프로그래밍 > 알고리즘' 카테고리의 다른 글
별찍기 (0) | 2019.08.22 |
---|---|
백준 10817 세수 (0) | 2019.08.21 |
백준 2884 알람 시계 (0) | 2019.08.20 |
백준 2753 윤년 (0) | 2019.08.20 |
백준 9498 시험성적 (0) | 2019.08.20 |