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