std::ranges::max_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 max_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 largest = first; while (++first != last) if (std::invoke(comp, std::invoke(proj, *largest), std::invoke(proj, *first))) largest = first; return largest; } 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 max_element_fn max_element; |
[编辑] 示例
运行此代码
#include <algorithm> #include <cmath> #include <iostream> int main() { namespace ranges = std::ranges; const auto v = {3, 1, -14, 1, 5, 9, -14, 9}; auto result = ranges::max_element(v.begin(), v.end()); std::cout << "Max element at pos " << ranges::distance(v.begin(), result) << '\n'; auto abs_compare = [](int a, int b) { return std::abs(a) < std::abs(b); }; result = ranges::max_element(v, abs_compare); std::cout << "Absolute max element at pos " << ranges::distance(v.begin(), result) << '\n'; }
输出
Max element at pos 5 Absolute max element at pos 2
[编辑] 另请参阅
(C++20) |
返回范围中的最小元素 (niebloid) |
(C++20) |
返回范围中的最小和最大元素 (niebloid) |
(C++20) |
返回给定值中较大的值 (niebloid) |
返回范围中的最大元素 (函数模板) |