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
- Javascript
- 백준
- XSS Game
- 웹페이지 만들기
- PHP 웹페이지 만들기
- WarGame
- Sookmyung Information Security Study
- lob
- c++
- HTML
- siss
- c
- 파이썬
- The Loard of BOF
- hackctf
- 풀이
- 드림핵
- 기계학습
- BOJ Python
- Python
- hackerrank
- C언어
- 생활코딩
- 숙명여자대학교 정보보안동아리
- 숙명여자대학교 정보보안 동아리
- CSS
- 자료구조 복습
- BOJ
- SWEA
- 머신러닝
Archives
- Today
- Total
목록quicksort1 - partition (1)
혜랑's STORY
[HackerRank_C] Quicksort1 - partition
자료구조 복습용 sorting 문제입니다. -문제 Quicksort 1 - Partition | HackerRank Perform the first step of Quicksort: partitioning an array. www.hackerrank.com 퀵 정렬을 할 때, pivot을 arr[0]으로 사용하여 left, equal, right을 분류하고 그 리스트를 반환한다. - 풀이 int* quickSort(int arr_count, int* arr, int* result_count) { int *result = (int*)malloc(sizeof(int)*arr_count); int *left = (int*)malloc(sizeof(int)*arr_count); int *equal = (int*..
2021 SISS 21기 활동/1학기 C
2021. 5. 6. 01:09