정렬 알고리즘 처리속도 비교
- 삽입정렬 Insertion sort
- 선택정렬 Selection sort
- 버블정렬 Bubble sort
- 셸 정렬 Shell sort
- 합병 정렬 Merge sort
- 힙 정렬 Heap sort
- 퀵 정렬 Quick sort
- 3중 분할 퀵 정렬 Quick3 sort (The 3-way partition variation of quick sort)
Sorting Algorithms Animations site
https://www.toptal.com/developers/sorting-algorithms
Sorting Algorithms Animations
Animation, code, analysis, and discussion of 8 sorting algorithms on 4 initial conditions.
www.toptal.com
추천!
정렬 알고리즘 속도와 과정을 직관적으로 볼 수 있다.
(확실히 눈으로 보니 차이가 크다!)
'알고리즘' 카테고리의 다른 글
[정렬 알고리즘] 계수정렬 Counting Sort (0) | 2021.01.19 |
---|---|
[정렬 알고리즘] 퀵 정렬, 힙 정렬, 합병 정렬 [미완] (0) | 2021.01.15 |
[정렬 알고리즘] 버블정렬, 선택정렬, 삽입정렬 (0) | 2021.01.15 |