Recent Posts
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
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- 티스토리챌린지
- vfr video
- preemption #
- JanusGateway
- 겨울 부산
- 오블완
- 깡돼후
- JanusWebRTCServer
- python
- JanusWebRTCGateway
- PersistenceContext
- terminal
- 코루틴 컨텍스트
- 자원부족
- tolerated
- JanusWebRTC
- Spring Batch
- 개성국밥
- kotlin
- taint
- PytestPluginManager
- Value too long for column
- 달인막창
- table not found
- mp4fpsmod
- k8s #kubernetes #쿠버네티스
- 코루틴 빌더
- pytest
- VARCHAR (1)
Archives
너와 나의 스토리
큌 소트 (Quick-Sort) 구현 본문
반응형
소스 코드:
#include <iostream>
#define QSIZE 200002
using namespace std;
int arr[100];
void swap(int a, int b) {
int tmp = arr[a];
arr[a] = arr[b];
arr[b] = tmp;
}
void func(int l, int r) {
if (l >= r) return;
int pivot = arr[l];
int i = l;
int j = r;
while (i <= j) {
while (arr[i] < pivot) i++;
while (arr[j] > pivot) j--;
if (i <= j) {
swap(i, j);
i++;
j--;
}
}
if (i < r) func(i, r);
if (l < j) func(l, j);
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
for (int i = 0; i < 10; i++) {
cin >> arr[i];
}
func(0, 9);
for (int i = 0; i < 10; i++) {
cout << arr[i]<<" ";
}
return 0;
}
// 5 1 7 8 6 2 9 4 3 0
반응형
'Algorithm > 자료구조 구현' 카테고리의 다른 글
[BOJ] 1158 요세푸스 문제 - 이중 연결 리스트(Doubly Linked List), 큐(Queue) 구현 (0) | 2020.02.19 |
---|---|
[BOJ] 2164 카드 2 - deque 구현 (0) | 2019.09.22 |
[BOJ] 10773 제로 (0) | 2019.09.22 |
[BOJ] 11279 최대 힙 - heap(priority_queue) 구현 (0) | 2019.09.01 |
[BOJ] 2252 줄 세우기 [리스트, 큐, 이중 벡터 구현] (0) | 2019.08.30 |
Comments