티스토리 뷰

// selection_sort
#include<stdio.h>

int main(void) {
	int aList[5] = { 7, 1, 5, 3, 6 };
	int i, j, temp = 0;

	for (i = 0; i < 4; i++ )
		for (j = i + 1; j < 5; j++)
			if (aList[i] > aList[j]) {
				temp = aList[i];
				aList[i] = aList[j];
				aList[j] = temp;
			}
	for (i = 0; i < 5; i++ )
		printf("%d\t", aList[i]);
	return 0;
}
// bubble_sort
#include<stdio.h>

int main(void) {
	int aList[5] = { 10, 50, 30, 20, 40 };
	int i = 0, j = 0, temp = 0;

	for (i = 0; i < 4; i++) {
		for (j = i; j < 4; j++) {
			if (aList[j] > aList[j + 1]) {
				temp = aList[j];
				aList[j] = aList[j + 1];
				aList[j + 1] = temp;
			}
		}
	}
	for (i = 0; i < 5; i++)
		printf("%d\t", aList[i]);

	return 0;
}

가장 기본적인 정렬로써, O(n^2)의 시간복잡도를 가진다.

'언어 > C' 카테고리의 다른 글

[Inflearn C] 달팽이 배열 Snail_Array  (0) 2019.09.09
[Inflearn C] 배열과 교차의 구현  (0) 2019.09.09
[Inflearn_C] 다차원 배열  (0) 2019.09.07
[Inflearn C] 연산자  (0) 2019.09.05
[Inflearn C] Type Promotion 형승격  (0) 2019.09.05
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   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
글 보관함