c언어 삽입정렬1 [C언어] 삽입 정렬을 실행하는 프로그램을 작성하고 테스트하시오 insertionSort(int a[], int size) 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 더보기 #include int size; void insertionSort(int a[], int size) { int i, j, t, temp; printf("\n정렬할 원소 : "); for (t = 0; ttemp)) { a[j] = a[j - 1]; j = j - 1; } a[j] = temp; printf("\n %d단계 : ", i); for (t = 0; t 2022. 12. 11. 이전 1 다음