std::min_element
定义于头文件 <algorithm> |
||
template< class ForwardIt > ForwardIt min_element( ForwardIt first, ForwardIt last ); |
(1) | (constexpr since C++17) |
template< class ExecutionPolicy, class ForwardIt > ForwardIt min_element( ExecutionPolicy&& policy, |
(2) | (since C++17) |
template< class ForwardIt, class Compare > ForwardIt min_element( ForwardIt first, ForwardIt last, |
(3) | (constexpr since C++17) |
template< class ExecutionPolicy, class ForwardIt, class Compare > ForwardIt min_element( ExecutionPolicy&& policy, |
(4) | (since 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) |
返回范围中最小的元素 (算法函数对象) |