"정렬, 정렬 알고리즘"의 두 판 사이의 차이

39번째 줄: 39번째 줄:


==같이 보기==
==같이 보기==
*[[기수 정렬]]
* [[순서]]
*[[자연 정렬]]
* [[알고리즘]]
*[[위상 정렬]]
* [[ORDER BY 절]]
*[[알고리즘]]
* [[오름차순, 내림차순]]
*[[순서]]
* [[기수 정렬]]
*[[오름차순, 내림차순]]
* [[자연 정렬]]
*[[ORDER BY 절]]
* [[위상 정렬]]
* [[정렬 구현]]


==참고==
==참고==

2018년 8월 26일 (일) 17:00 판

sorting, sort
정렬, 소팅, 소트
sorting algorithm
정렬 알고리즘

1 정렬

  • 항목을 순서에 따라 배열하는 일
  • 원소들을 번호순이나 사전 순서와 같이 일정한 순서대로 열거하는 일

2 정렬 알고리즘

  • 정렬에 사용하는 알고리즘

3 종류

4 예시

비교정렬
이름 최선 평균 최악
거품정렬 [math]\displaystyle{ n }[/math] [math]\displaystyle{ n^2 }[/math] [math]\displaystyle{ n^2 }[/math]
삽입정렬 [math]\displaystyle{ n }[/math] [math]\displaystyle{ n^2 }[/math] [math]\displaystyle{ n^2 }[/math]
병합정렬 [math]\displaystyle{ n\log n }[/math] [math]\displaystyle{ n\log n }[/math] [math]\displaystyle{ n\log n }[/math]
힙정렬 [math]\displaystyle{ n }[/math]
(모두 고유키 [math]\displaystyle{ n\log n }[/math])
[math]\displaystyle{ n\log n }[/math] [math]\displaystyle{ n\log n }[/math]
쿽정렬 [math]\displaystyle{ n\log n }[/math]
(변형판 [math]\displaystyle{ n }[/math])
[math]\displaystyle{ n\log n }[/math] [math]\displaystyle{ n^2 }[/math]
비(非)비교정렬

5 같이 보기

6 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}