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 | 31 |
Tags
- 컴퓨터 그래픽스
- set
- Algorithm
- vector
- 아두이노
- 아두이노 소스
- list
- Stack
- arduino compiler
- 통계학
- 시스템프로그래밍
- directx
- queue
- LineTracer
- 아두이노 컴파일러
- Visual Micro
- map
- Arduino
- Array
- C언어
- 라인트레이서
- Deque
- 수광 소자
- WinAPI
- html
- c++
- stl
- 자료구조
- priority_queue
- 운영체제
Archives
- Today
- Total
Kim's Programming
Algorithm - minmax() 본문
원형)
1 2 3 4 5 6 7 8 9 10 11 12 13 | //기본형 template <class T> pair <const T&,const T&> minmax (const T& a, const T& b); //사용자 정의형 template <class T, class Compare> pair <const T&,const T&> minmax (const T& a, const T& b, Compare comp); //초기화 리스트를 이용 template <class T> pair<T,T> minmax (initializer_list<T> il); template <class T, class Compare> pair<T,T> minmax (initializer_list<T> il, Compare comp); | cs |
의미)
a와 b중에서 작은값은 pair의 first로 큰값을 second로 작은값으로 하는 pair를 리턴하거나 초기화 리스트중에서 가장 큰 값을 first로 가장 작은 값을 second로 하는 pair을 리턴합니다.
소스)
1 2 3 4 5 6 7 8 9 | #include <iostream> #include <algorithm> void main() { std::pair<int, int> pair = std::minmax({ 1,6,10,15,2,3,4,5 }); std::cout << "min-->" << pair.first << std::endl; std::cout << "max-->" << pair.second << std::endl; } | cs |
내용)
minmax()함수는 first를 최소값으로 second를 최대값으로 하는 pair를 리턴합니다.
결과)
'STL - Algorithm > Algorithm - Min&Max' 카테고리의 다른 글
Algorithm - minmax_element() (0) | 2017.06.22 |
---|---|
Algorithm - max_element() (0) | 2017.06.22 |
Algorithm - min_element() (0) | 2017.06.22 |
Algorithm - min() (0) | 2017.06.22 |
Algorithm - max() (0) | 2017.06.22 |