관리 메뉴

Kim's Programming

Algorithm - minmax() 본문

STL - Algorithm/Algorithm - Min&Max

Algorithm - minmax()

Programmer. 2017. 6. 22. 23:23

원형)


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<intint> pair = std::minmax({ 1,6,10,15,2,3,4,});
    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