std::min_element
定义在头文件 <algorithm> 中 |
||
template< class ForwardIt > ForwardIt min_element( ForwardIt first, ForwardIt last ); |
(1) | (从 C++17 起为 constexpr) |
template< class ExecutionPolicy, class ForwardIt > ForwardIt min_element( ExecutionPolicy&& policy, |
(2) | (从 C++17 起) |
template< class ForwardIt, class Compare > ForwardIt min_element( ForwardIt first, ForwardIt last, |
(3) | (从 C++17 起为 constexpr) |
template< class ExecutionPolicy, class ForwardIt, class Compare > ForwardIt min_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。
[编辑] 可能的实现
min_element (1) |
---|
template<class ForwardIt> ForwardIt min_element(ForwardIt first, ForwardIt last) { if (first == last) return last; ForwardIt smallest = first; while (++first != last) if (*first < *smallest) smallest = first; return smallest; } |
min_element (3) |
template<class ForwardIt, class Compare> ForwardIt min_element(ForwardIt first, ForwardIt last, Compare comp) { if (first == last) return last; ForwardIt smallest = first; while (++first != last) if (comp(*first, *smallest)) smallest = first; return smallest; } |
[编辑] 示例
#include <algorithm> #include <iostream> #include <vector> int main() { std::vector<int> v{3, 1, -4, 1, 5, 9}; std::vector<int>::iterator result = std::min_element(v.begin(), v.end()); std::cout << "min element has value " << *result << " and index [" << std::distance(v.begin(), result) << "]\n"; }
输出
min element has value -4 and index [2]
[编辑] 缺陷报告
以下行为更改缺陷报告被追溯应用到先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 212 | C++98 | 如果 [ first, last) 为空,则未指定返回值 |
在这种情况下返回 last |
LWG 2150 | C++98 | 返回指向第一个非最大元素的迭代器 | 更正了返回值 |
[编辑] 另请参阅
返回范围中最大的元素 (函数模板) | |
(C++11) |
返回范围中最小和最大的元素 (函数模板) |
返回给定值中较小的一个 (函数模板) | |
(C++20) |
返回范围中最小元素 (niebloid) |