- 배열의 모든 요소를 앞에서부터 차례대로 이미 정렬된 배열 부분과 비교하여, 자신의 위치를 찾아 삽입함. - 배열의 두 번째 데이터 부터 연산을 시작함. - 시간복잡도 : O(n^2) package algorithm.sort; public class Insertion { public static void main(String[] args) { int[] arr = {3,6,1,9,2, 7,4,8,5,0, 14,23,98,45,76, 34}; insertionSort(arr); System.out.println("==========================="); for(int item : arr){ System.out.print(item); System.out.print("|"); } System...