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
- 코딩테스트
- 삼성
- 코테 준비
- 알고리즘 문제
- STUDYENGLISH
- nightroutine
- the midnight library
- 백준
- PyQt
- 직무면접
- 원서
- D4
- English
- 원서읽자
- sw expert academy
- 알고리즘
- BFS
- 완전탐색
- sw expert
- MySQL
- dfs
- readingbook
- SQL
- swexpertacademy
- 원서읽기
- 쉬운 알고리즘 문제
- 코테 대비
- 프로그래머스
- englishbook
- 코테
Archives
- Today
- Total
목록7810 (1)
시나브로
[D4] 7810. 승현이의 질문
#include int input[500005] = { 0 }; int num; void quickSort(int first, int last) { int pivot; int i; int j; int temp; if (first < last) { pivot = first; i = first; j = last; while (i < j) { while (input[i] input[pivot]) { j--; } if (i < j) { temp = input[i]; input[i] = input[j]; input[j] = temp; } } temp = input[pivot]; input[pivot] = input[j]; input[j] = temp; quickSort(first, j - 1); quickSort..
알고리즘/SW Expert Academy
2019. 10. 6. 11:13