관리 메뉴

Kim's Programming

Algorithm - min() 본문

STL - Algorithm/Algorithm - Min&Max

Algorithm - min()

Programmer. 2017. 6. 22. 23:18

원형)


1
2
3
4
5
6
//기본형
template <class T> const T& min (const T& a, const T& b);
 
//사용자 정의형
template <class T, class Compare>
  const T& min (const T& a, const T& b, Compare comp);
cs


의미)


a와 b 중에서 작은 값을 리턴합니다.


소스)


1
2
3
4
5
6
7
8
9
#include <iostream>
#include <algorithm>
 
void main() 
{
    std::cout << "min -> " << std::min(13<< std::endl;
    std::cout << "min -> " << std::min(31<< std::endl;
}
 
cs



리턴값)


작은 값을 리턴합니다.


결과)




'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 - minmax()  (0) 2017.06.22
Algorithm - max()  (0) 2017.06.22