선택 정렬(Selection Sort) - 가장 작은 것을 선택해 제일 앞으로 보내는 것. public class Selection_Sort { public static void selection_sort(int[] a) { selection_sort(a, a.length); } private static void selection_sort(int[] a, int size) { for(int i = 0; i