std::ranges::min_element
来自 cppreference.com
在头文件 <algorithm> 中定义 |
||
调用签名 |
||
template< std::forward_iterator I, std::sentinel_for<I> S, class Proj = std::identity, std::indirect_strict_weak_order<std::projected<I, Proj>> Comp = ranges::less > |
(1) | (自 C++20 起) |
template< ranges::forward_range R, class Proj = std::identity, std::indirect_strict_weak_order< |
(2) | (自 C++20 起) |
1) 在范围
[
first,
last)
中找到最小的元素。此页面上描述的函数式实体是 niebloids,也就是说
实际上,它们可以实现为函数对象,或者使用特殊的编译器扩展。
内容 |
[编辑] 参数
first, last | - | 表示要检查的范围的迭代器-哨兵对 |
r | - | 要检查的范围 |
comp | - | 要应用于投影元素的比较 |
proj | - | 要应用于元素的投影 |
[编辑] 返回值
指向范围 [
first,
last)
中最小元素的迭代器。如果范围中有多个元素等效于最小元素,则返回指向第一个此类元素的迭代器。如果范围为空(即 first == last),则返回 last。
[编辑] 复杂度
正好 max(N - 1, 0) 次比较,其中 N = ranges::distance(first, last).
[编辑] 可能的实现
struct min_element_fn { template<std::forward_iterator I, std::sentinel_for<I> S, class Proj = std::identity, std::indirect_strict_weak_order<std::projected<I, Proj>> Comp = ranges::less> constexpr I operator()(I first, S last, Comp comp = {}, Proj proj = {}) const { if (first == last) return last; auto smallest = first; while (++first != last) if (std::invoke(comp, std::invoke(proj, *first), std::invoke(proj, *smallest))) smallest = first; return smallest; } template<ranges::forward_range R, class Proj = std::identity, std::indirect_strict_weak_order< std::projected<ranges::iterator_t<R>, Proj>> Comp = ranges::less> constexpr ranges::borrowed_iterator_t<R> operator()(R&& r, Comp comp = {}, Proj proj = {}) const { return (*this)(ranges::begin(r), ranges::end(r), std::ref(comp), std::ref(proj)); } }; inline constexpr min_element_fn min_element; |
[编辑] 示例
运行这段代码
#include <algorithm> #include <array> #include <cmath> #include <iostream> int main() { namespace ranges = std::ranges; std::array v{3, 1, -13, 1, 3, 7, -13}; auto iterator = ranges::min_element(v.begin(), v.end()); auto position = ranges::distance(v.begin(), iterator); std::cout << "min element is v[" << position << "] == " << *iterator << '\n'; auto abs_compare = [](int a, int b) { return (std::abs(a) < std::abs(b)); }; iterator = ranges::min_element(v, abs_compare); position = ranges::distance(v.begin(), iterator); std::cout << "|min| element is v[" << position << "] == " << *iterator << '\n'; }
输出
min element is v[2] == -13 |min| element is v[1] == 1
[编辑] 另请参阅
(C++20) |
返回范围中的最大元素 (niebloid) |
(C++20) |
返回范围中的最小和最大元素 (niebloid) |
(C++20) |
返回给定值中较大的一个 (niebloid) |
返回范围中的最小元素 (函数模板) |