1. 정렬 알고리즘
임의의 순서로 제공된 수들을 크기순으로 정렬하는 알고리즘
다양한 종류가 있음
알고리즘의 효율성 차이를 잘 나타냄
2. 정렬 알고리즘의 종류
■ 선택 정렬 (Selection Sort) https://hyeminseo.tistory.com/61?category=1072199
■ 버블 정렬 (Bubble Sort) https://hyeminseo.tistory.com/63?category=1072199
■ 삽입 정렬 (Insertion Sort) https://hyeminseo.tistory.com/64?category=1072199
■ 퀵 정렬 (Quick Sort) https://hyeminseo.tistory.com/65?category=1072199
■ 병합 정렬 (Merge Sort)
■ 힙 정렬 (Heap Sort)
■ 계수 정렬 (Counting Sort)
'CS > Algorithm' 카테고리의 다른 글
쉘 정렬 (Shell Sort) (0) | 2022.06.06 |
---|---|
퀵 정렬 (Quick Sort) (0) | 2022.05.09 |
삽입 정렬 (Insertion Sort) (0) | 2022.05.06 |
버블 정렬 (Bubble Sort) (0) | 2022.05.04 |
선택 정렬 (Selection Sort) (0) | 2022.05.03 |