250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- nightroutine
- 코딩테스트
- English
- swexpertacademy
- sw expert academy
- 프로그래머스
- readingbook
- 삼성
- 원서읽기
- 원서읽자
- BFS
- 코테 대비
- 코테
- MySQL
- 완전탐색
- 쉬운 알고리즘 문제
- englishbook
- dfs
- 원서
- STUDYENGLISH
- the midnight library
- 백준
- SQL
- 알고리즘 문제
- 직무면접
- PyQt
- 알고리즘
- 코테 준비
- D4
- sw expert
Archives
- Today
- Total
목록정렬 소스코드 (1)
시나브로
[ Sort ] Quick Sort 퀵 정렬 <보충하기>
퀵 정렬은 평균적으로 O(nlogn)의 시간복잡도를 가지고 있다. 퀵 정렬은 기준의 되는 피봇을 설정하고 그것을 기준으로 값들을 swap하면서 sort 하는 것이다. #include #include using namespace std; int list[20] = { 0 }; void swap(int i, int j) { int temp = list[i]; list[i] = list[j]; list[j] = temp; } void quick_sort(int left, int right) { if (left > right)return; int pivot = right; int i = left; int j = right; while (i < j) { while (list[i] < list[pivot]) i++..
카테고리 없음
2020. 1. 16. 10:39