선택 정렬(Selection Sort)
O(n^2)
버블 정렬(Bubble Sort) - 실제론 잘 쓰이지 않음
O(n^2)
삽입 정렬(Insertion Sort)
O(n^2)
퀵 정렬(Quick Sort)
O(n log n) - average
O(n^2) - worst
병합 정렬(Merge Sort)
O(n log n)
힙 정렬(Heap Sort)
O(n log n)
기수 정렬(Radix Sort)
O(n)
계수 정렬(Counting Sort)
O(n)
'::public > 알고리즘' 카테고리의 다른 글
퀵 정렬(Quick Sort) (0) | 2019.07.11 |
---|---|
알고리즘 시간 복잡도 (0) | 2019.06.26 |
삽입 정렬(Insertion Sort) (0) | 2019.06.18 |
선택 정렬(Selection Sort) (0) | 2019.06.18 |
버블 정렬(Bubble Sort) (0) | 2019.06.18 |