function template
<algorithm>
std::max_element
| default (1) | template <class ForwardIterator> ForwardIterator max_element (ForwardIterator first, ForwardIterator last); |
|---|---|
| custom (2) | template <class ForwardIterator, class Compare> ForwardIterator max_element (ForwardIterator first, ForwardIterator last, Compare comp); |
Return largest element in range
[first,last).
The comparisons are performed using either operator< for the first version, or comp for the second; An element is the largest if no other element does not compare less than it. If more than one element fulfills this condition, the iterator returned points to the first of such elements.
The behavior of this function template is equivalent to:
|
|
Parameters
- first, last
- Input iterators to the initial and final positions of the sequence to compare. The range used is
[first,last), which contains all the elements between first and last, including the element pointed by first but not the element pointed by last. - comp
- Binary function that accepts two elements in the range as arguments, and returns a value convertible to
bool. The value returned indicates whether the element passed as first argument is considered less than the second.
The function shall not modify any of its arguments.
This can either be a function pointer or a function object.
Return value
An iterator to largest value in the range, or last if the range is empty.Example
|
|
Output:
The smallest element is 2 The largest element is 9 The smallest element is 2 The largest element is 9 The smallest element is 2 The largest element is 9
Complexity
Linear in one less than the number of elements compared.Data races
The objects in the range[first,last) are accessed.Exceptions
Throws if any comparison throws.Note that invalid arguments cause undefined behavior.
See also
- min_element
- Return smallest element in range (function template)
- upper_bound
- Return iterator to upper bound (function template)
- max
- Return the largest (function template)