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