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 | 31 |
Tags
- 백준 17822
- 조세퍼스 순열
- ㅣ풀이
- 구현
- 백준
- 백준 1158
- 백준 1406
- 5397
- 해시 구현
- qorwns
- 자료구조
- c#
- 풀이
- 스택의 특징
- 원판 돌리기
- 1764
- C/C++ 구현
- dfs
- 백준 17471
- 게리멘더링2
- 버킷 정렬
- 별 찍기 10
- 시간 복잡도
- Stack 이란
- 백준 17779
- AVL 시간 복잡도
- 해시구현
- 백준 2447
- heap
- 백준 5397
Archives
- Today
- Total
홍시홍의 프로그래밍
[백준 2750] 수 정렬하기 본문
https://www.acmicpc.net/problem/2750
요구사항
1. 오름 차순으로 정렬
풀이
1. 퀵 정렬 구현
1.1 피벗을 정한다
1.2 i, j, pivot 정의
1.3 i는 피벗보다 큰게 나올때 까지 증가
1.4 j는 피벗보다 작은게 나올대 까지 감소
i, j가 교차 하였으면 pivot, j 스왑
아니면 i, j 스왑
위 과정을 i <=j 교차 될때 까지
이 후 재귀 함수로 풀이
#include <iostream>
using namespace std;
int n;
void swap(int& a, int& b)
{
int temp;
temp = a;
a = b;
b = temp;
}
int map[10001];
void Quick_sort(int l, int r, int arr[])
{
if (l >= r)
return;
int pivot = l;
int i = l + 1;
int j = r;
while (i<=j)
{
while (i <= r && arr[pivot] >= arr[i]){
i++;
}
while (j > l && arr[pivot] <= arr[j]) {
j--;
}
if (i > j)
{
swap(arr[j], arr[pivot]);
}
else {
swap(arr[i], arr[j]);
}
}
Quick_sort(l, j - 1, arr);
Quick_sort(j+1,r, arr);
}
int main()
{
ios_base::sync_with_stdio(false);
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> map[i];
}
Quick_sort(0, n - 1, map);
for (int i = 0; i < n; i++)
{
cout << map[i] << '\n';
}
return 0;
}
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 1427] 소트인사이드 (0) | 2019.12.19 |
---|---|
[백준 10989] 수 정렬하기3 (0) | 2019.12.18 |
[백준 2798] 블랙잭 (0) | 2019.12.16 |
[백준 2447] 별 찍기 10 (0) | 2019.12.14 |
[백준 5397] 키로커 (0) | 2019.11.22 |
Comments