SMALL
package test;
public class 삽입 {
private static int arr[] = {4,9,7,1,5};
public static void main(String[] args) {
for(int i=1; i<5; i++) {
int val = arr[i];
for(int j= i-1; j>=0; j--) {
if(arr[j+1] < arr[j]) {
arr[j+1] = arr[j];
} else {
break;
}
arr[j] = val;
}
print();
}
}
public static void print() {
for(int i=0; i<5; i++) {
System.out.print(arr[i]);
}
System.out.println();
}
}
LIST
'전공 > 자료구조' 카테고리의 다른 글
원형 큐(Circular queue) (0) | 2021.07.14 |
---|---|
Stable Sort, Unstable Sort (0) | 2021.07.13 |
B-tree, B+tree (0) | 2021.06.05 |
AVL 트리 vs Red Black 트리 (0) | 2021.06.05 |
정렬 시간복잡도 (0) | 2021.06.05 |