std::max_element
在头文件 <algorithm> 中定义 |
||
template< class ForwardIt > ForwardIt max_element( ForwardIt first, ForwardIt last ); |
(1) | (从 C++17 开始为 constexpr) |
template< class ExecutionPolicy, class ForwardIt > ForwardIt max_element( ExecutionPolicy&& policy, |
(2) | (从 C++17 开始) |
template< class ForwardIt, class Compare > ForwardIt max_element( ForwardIt first, ForwardIt last, |
(3) | (从 C++17 开始为 constexpr) |
template< class ExecutionPolicy, class ForwardIt, class Compare > ForwardIt max_element( ExecutionPolicy&& policy, |
(4) | (从 C++17 开始) |
查找范围 [
first,
last)
中的最大元素。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true 时才参与重载解析。 |
(直到 C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true。 |
(从 C++20 开始) |
内容 |
[编辑] 参数
first, last | - | 定义要检查范围的正向迭代器 |
policy | - | 要使用的执行策略。有关详细信息,请参阅 执行策略。 |
comp | - | 比较函数对象(即满足 Compare 要求的对象),如果第一个参数小于第二个参数,则返回 true。 比较函数的签名应该等效于以下内容 bool cmp(const Type1& a, const Type2& b); 虽然签名不需要有 const&,但该函数不得修改传递给它的对象,并且必须能够接受类型(可能是 const) |
类型要求 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求。 |
[编辑] 返回值
返回区间 [
first,
last)
中最大元素的迭代器。如果区间中有多个元素与最大元素相等,则返回指向第一个此类元素的迭代器。如果区间为空,则返回 last。
[编辑] 复杂度
设 N 为 std::distance(first, last)
[编辑] 异常
具有名为 ExecutionPolicy
的模板参数的重载会报告以下错误
- 如果作为算法的一部分调用的函数执行时抛出异常,并且
ExecutionPolicy
是 标准策略 之一,则调用 std::terminate。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
max_element (1) |
---|
template<class ForwardIt> ForwardIt max_element(ForwardIt first, ForwardIt last) { if (first == last) return last; ForwardIt largest = first; while (++first != last) if (*largest < *first) largest = first; return largest; } |
max_element (3) |
template<class ForwardIt, class Compare> ForwardIt max_element(ForwardIt first, ForwardIt last, Compare comp) { if (first == last) return last; ForwardIt largest = first; while(++first != last) if (comp(*largest, *first)) largest = first; return largest; } |
[编辑] 示例
#include <algorithm> #include <cmath> #include <iostream> #include <vector> int main() { std::vector<int> v{3, 1, -14, 1, 5, 9, -14, 9}; std::vector<int>::iterator result; result = std::max_element(v.begin(), v.end()); std::cout << "Max element found at index " << std::distance(v.begin(), result) << " has value " << *result << '\n'; result = std::max_element(v.begin(), v.end(), [](int a, int b) { return std::abs(a) < std::abs(b); }); std::cout << "Absolute max element found at index " << std::distance(v.begin(), result) << " has value " << *result << '\n'; }
输出
Max element found at index 5 has value 9 Absolute max element found at index 2 has value -14
[编辑] 缺陷报告
以下更改行为的缺陷报告被追溯应用到以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 212 | C++98 | 如果 [ first, last) 为空,则未指定返回值 |
在这种情况下返回 last |
LWG 2150 | C++98 | 返回指向第一个非最小元素的迭代器 | 更正了返回值 |
[编辑] 另请参阅
返回区间中的最小元素 (函数模板) | |
(C++11) |
返回区间中的最小和最大元素 (函数模板) |
返回给定值中较大的值 (函数模板) | |
(C++20) |
返回区间中的最大元素 (niebloid) |