[Exchange Sort] 난쟁이 정렬 (Gnome Sort)
정렬 알고리즘의 교환 정렬의 난쟁이 정렬에 대한 정리
복잡도
최악 시간복잡도
- $O(n^2)$
최선 시간복잡도
- $O(n)$
평균 시간복잡도
- $O(n^2)$
공간복잡도
- $O(1)$ 보조
구현 코드
1
2
3
export const arr = [
14, 17, 12, 20, 1, 5, 9, 7, 3, 8, 6, 2, 4, 10, 11, 16, 15, 19, 18, 13,
];
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { arr } from "./number_array";
class gnomeSort {
public static main(arr: number[]): void {
let pos: number = 0,
count: number = 0;
const swap = (arr: number[], i: number, j: number): void => {
let temp: number = arr[i];
arr[i] = arr[j];
arr[j] = temp;
};
for (pos = 0; pos < arr.length - 1; ) {
if (pos < 0 || arr[pos] <= arr[pos + 1]) {
pos++;
continue;
}
swap(arr, pos, pos + 1);
pos--;
count++;
console.log(arr.toString(), `→ [${count}회]`);
}
// console.log(arr.toString());
}
}
gnomeSort.main(arr);
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.