관리 메뉴

Kim's Programming

Algorithm - max() 본문

STL - Algorithm/Algorithm - Min&Max

Algorithm - max()

Programmer. 2017. 6. 22. 23:15

원형)


1
2
3
4
5
6
//기본형
template <class T> const T& max (const T& a, const T& b);
 
//사용자 정의형
template <class T, class Compare>
  const T& max (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 << "max -> " << std::max(57<< std::endl;
    std::cout << "max -> " << std::max(41<< std::endl;
}
 
cs



리턴값)


max(x,y)함수는 x,y중에서 큰 값을 리턴합니다.



결과)




'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 - min()  (0) 2017.06.22