티스토리 뷰
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
//#define _CRT_SECURE_NO_WARNINGS
//#include <iostream>
#include <cstdio>
//using namespace std;
void quickSort(int low, int high, int* array);
int partition(int low, int high, int* array);
int main() {
int input;
scanf("%d", &input);
int* number = new int[input];
for (int i = 0; i < input; i++)
scanf("%d", &number[i]);
quickSort(0, input - 1, number);
for (int i = 0; i < input; i++)
printf("%d\n", number[i]);
delete[] number;
}
void quickSort(int low, int high, int* array) {
int pivot;
if (high > low) {
pivot = partition(low, high, array);
quickSort(low, pivot - 1, array);
quickSort(pivot + 1, high, array);
}
}
int partition(int low, int high, int* array) {
int i, j, pivot;
pivot = array[low];
j = low;
for(i = low+1;i<=high;i++)
if (array[i] < pivot) {
int tmp = array[i];
array[i] = array[++j];
array[j] = tmp;
}
pivot = j;
int tmp = array[low];
array[low] = array[pivot];
array[pivot] = tmp;
return pivot;
}
|
cs |
문제 설명 보면 버블소트써도 시간제한 안걸리는 것 같은데, 그냥 퀵소트로 만들었다.
그리고 문제를 해결하는 와중에 정렬이 필요한 경우라면 그냥 std::sort를 쓰겠지만, 정렬 자체가 목적인 문제에서는 직접 짜려고 한다. 그래야 알고리즘 복습도 하고 그러지..
'algorithm'''problem solve' 카테고리의 다른 글
[백준]10989-수 정렬하기 3(설명X) (0) | 2019.08.16 |
---|---|
[백준]2751-수 정렬하기 2(설명X, 머지소트) (0) | 2019.08.16 |
[백준]1436-영화감독 숌 (0) | 2019.08.16 |
[백준]1018-체스판 다시 칠하기(설명X) (0) | 2019.08.16 |
[백준]7568-덩치(설명X) (0) | 2019.08.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- c
- BaekJoon
- 프로그래머스
- webOS
- 이분탐색
- 구현
- PyPy3
- 백준
- 카카오
- DFS
- 완전탐색
- Dynamic Programming
- 한화큐셀
- 플로이드 와셜
- 인공지능
- 1932
- 컨트리뷰톤
- 알고리즘
- 백트래킹
- 파이썬
- 코딩
- BFS
- 오픈소스
- c++
- 정렬
- DP
- 동적 계획법
- LG
- 피보나치
- 브루트포스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함