[C언어 소스] 선택 정렬(Selection Sort) 알고리즘언제나 휴일 티스토리 //선택 정렬(Selection Sort)#include #define SWAP(a,b) {int t; t = a; a=b; b=t;}//a와 b를 교환void SelectionSort(int *base, int n);int main(void){ int arr[10] = { 9,4,3,10,5,8,7,6,2,1 }; SelectionSort(arr, 10); return 0;}void ViewArr(int *arr, int n);void SelectionSort(int *base, int n){ int i, j; int maxi; ViewArr(base, n);//현재 상태 출력 for (i = n; i>1; i--)//..