// 기본 삽입 정렬(오름차순 정렬) public static void insertionSort(int[] x){ StringBuilder sb = new StringBuilder(); int temp = 0; for(int i=1 ; i 0 ; j--){ // System.out.println(x[j-1] + ":" + x[j]); if(x[j-1] > x[j]){ temp = x[j]; x[j] = x[j-1]; x[j-1] = temp; }else{ break; } } showArray(x, sb); } } // 진행상황을 출력한다. public static void showArray(int[] x, StringBuilder sb..