반응형
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
- 자료구조
- list
- Articulation_Point
- data_structure
- singly Linked List
- 백준
- deletion
- 5397
- Heap
- 구현
- Critical_Path_Analysis
- template
- c++
- red-black tree
- class_template
- qsort
- Algorithm
- 알고리즘
- sort
- function_template
- STL
- sstream
- Pair
- 예제
- 13305
- Biconnected_Component
- '0'
- connected_component
- 문법
- 총정리
Archives
- Today
- Total
- Today
- Total
- 방명록
목록내림차순 (1)
어제의 나보다 성장한 오늘의 나
[C++] Sort 와 Compare 함수 (Greater , less)
sort를 오름차순과 내림차순 중에 결정할 때 compare함수가 사용된다. 특히 에 저장되어 있는 sort 나 heap_sort를 사용할 때 많이 사용된다. 사용법은 동일 하니 STL Sort 함수를 기준으로 알아보자. ① compare 함수 생략 (오름차순) vector v = {4,5,2,1,3}; sort(v.begin() , v.end()); ② compare 함수 (내림차순) bool comp_desc(int a , int b){ return a>b; } vector v1 = {4,5,2,1,3}; sort(v1.begin() , v1.end() , comp_desc); ③ greater 함수 (내림차순) vector v2 = {4,5,2,1,3}; sort(v2.begin() , v2.end..
c++/문법
2022. 2. 10. 23:54