Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- EC2
- ssl
- FSL
- Cost Function
- Map-reduce
- 평가지표
- nodejs
- coursera
- relaxation time
- https
- MySQL
- procedure
- object detection
- error
- 동차좌표계
- x-ray
- Dual energy X-ray
- pm2
- ml
- AWS
- NRMSE
- kernel
- MRI
- Homogeneous Coordinates
- pytorch
- CT
- Anaconda
- ubuntu
- Emoji
- git
Archives
- Today
- Total
Pay it Forward
[C++] Sort의 Sorting Function 만들기 본문
728x90
C++의 <algorithm> 헤더에 포함된 sort() 함수의 Format은 다음과 같습니다
sort(/*정렬 시작 주소, 정렬 끝 주소, 정렬 시 사용하고자 하는 함수*/);
이 때, 정렬 시 사용하고자 하는 함수를 직접 만들 때 주로 사용하는 코드입니다.
bool compare(const [type] & name1, const [type] & name2)
{
return (정렬하고자 하는 방식)
}
아래는 User 라는 structure를 age 기준 오름차순으로 정렬하는 예시코드입니다.
#include <algorithm>
bool compare(struct User &a, struct User &b)
{
return a.age < b.age;
}
int main()
{
struct User a[10];
.
.
.
sort(a, a + numOfUser, compare);
}
728x90
'Code Snippet' 카테고리의 다른 글
[Python] raw file 열기 및 plot하기 (0) | 2022.07.15 |
---|---|
[Python] print '...' (생략) 없애기, 값 모두 출력하기 (0) | 2022.04.26 |
[Python] figure plot 관련 snippets (figure 여러개 띄우기, grid 없애기) (0) | 2021.08.13 |
Comments