2차원 배열을 초기화하여, 화면에 출력
#include int main() { int i, j; int array[3][4] = {{15, 23, 45, 56}, {34, 52, 76, 23}, {43, 62, 91, 84}}; for(i=0; i
더보기
버블 정렬
버블 정렬이란 인접해 있는 두 개의 값을 비교해서 자료 교환을 하는 것이다. 오름차순은 두 개의 값을 비교해서 큰 값을 오른쪽으로 보내는 방식이다. 내림차순은 두 개의 값을 비교해서 작은 값을 오른쪽으로 보내는 방식이다. //버블 정렬 프로그램 #include void bubble_sort(int array[], int count); void swap(int *px, int *py); void printVector(int V[], int n); int main() { int vector[5] = {5, 4, 3, 2, 1}; bubble_sort(vector, 5); } void bubble_sort(int array[], int count) { int i, j; for(i=0; iarray[]는 배열처..
더보기