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
- 코테 대비
- BFS
- the midnight library
- 코딩테스트
- 원서
- englishbook
- sw expert academy
- dfs
- D4
- nightroutine
- swexpertacademy
- sw expert
- 원서읽자
- 알고리즘 문제
- PyQt
- 백준
- 코테 준비
- 직무면접
- 알고리즘
- readingbook
- STUDYENGLISH
- 삼성
- English
- 원서읽기
- 코테
- SQL
- 쉬운 알고리즘 문제
- 프로그래머스
- MySQL
- 완전탐색
Archives
- Today
- Total
시나브로
[ Sort ] Quick Sort 퀵 정렬 <보충하기> 본문
728x90
퀵 정렬은 평균적으로 O(nlogn)의 시간복잡도를 가지고 있다.
퀵 정렬은 기준의 되는 피봇을 설정하고 그것을 기준으로 값들을 swap하면서 sort 하는 것이다.
#include<stdio.h>
#include<iostream>
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++;
while (i<j&&list[pivot] <= list[j])
j--;
swap(i, j);
}
swap(pivot,j);
quick_sort(left, j- 1);
quick_sort(j + 1, right);
}
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
char buffer = 0;
int i = 0;
for ( i = 0;; i++) {
scanf("%d", &list[i]);
scanf("%c", &buffer);
if (buffer == '\n')
break;
}
quick_sort(0, i);
for (int j = 0; j < i; j++)
printf("%d ", list[j]);
return 0;
}
728x90
Comments