std::ranges::max
来自 cppreference.com
定义在头文件 <algorithm> 中 |
||
调用签名 |
||
template< class T, class Proj = std::identity, std::indirect_strict_weak_order< |
(1) | (自 C++20) |
template< std::copyable T, class Proj = std::identity, std::indirect_strict_weak_order< |
(2) | (自 C++20) |
template< ranges::input_range R, class Proj = std::identity, std::indirect_strict_weak_order< |
(3) | (自 C++20) |
返回给定的投影值中较大的那个。
1) 返回 a 和 b 中较大的那个。
2) 返回初始化列表 r 中第一个最大的值。
3) 返回范围 r 中第一个最大的值。
此页面上描述的类似函数的实体是niebloids,即
在实践中,它们可以实现为函数对象,或者使用特殊的编译器扩展。
内容 |
[编辑] 参数
a, b | - | 要比较的值 |
r | - | 要比较的值的范围 |
comp | - | 应用于投影元素的比较 |
proj | - | 应用于元素的投影 |
[编辑] 返回值
1) a 和 b 中较大的一个,根据它们各自的投影值。如果它们是等价的,则返回 a。
[编辑] 复杂度
1) 恰好一次比较。
2,3) 恰好 ranges::distance(r) - 1 次比较。
[编辑] 可能的实现
struct max_fn { template<class T, class Proj = std::identity, std::indirect_strict_weak_order< std::projected<const T*, Proj>> Comp = ranges::less> constexpr const T& operator()(const T& a, const T& b, Comp comp = {}, Proj proj = {}) const { return std::invoke(comp, std::invoke(proj, a), std::invoke(proj, b)) ? b : a; } template<std::copyable T, class Proj = std::identity, std::indirect_strict_weak_order< std::projected<const T*, Proj>> Comp = ranges::less> constexpr T operator()(std::initializer_list<T> r, Comp comp = {}, Proj proj = {}) const { return *ranges::max_element(r, std::ref(comp), std::ref(proj)); } template<ranges::input_range R, class Proj = std::identity, std::indirect_strict_weak_order< std::projected<ranges::iterator_t<R>, Proj>> Comp = ranges::less> requires std::indirectly_copyable_storable<ranges::iterator_t<R>, ranges::range_value_t<R>*> constexpr ranges::range_value_t<R> operator()(R&& r, Comp comp = {}, Proj proj = {}) const { using V = ranges::range_value_t<R>; if constexpr (ranges::forward_range<R>) return static_cast<V>(*ranges::max_element(r, std::ref(comp), std::ref(proj))); else { auto i = ranges::begin(r); auto s = ranges::end(r); V m(*i); while (++i != s) if (std::invoke(comp, std::invoke(proj, m), std::invoke(proj, *i))) m = *i; return m; } } }; inline constexpr max_fn max; |
[编辑] 注意
如果其中一个参数是临时变量,并且该参数被返回,则通过引用捕获 std::ranges::max
的结果会产生悬挂引用
int n = -1; const int& r = std::ranges::max(n + 2, n * 2); // r is dangling
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <string> static_assert(std::ranges::max({0B10, 0X10, 010, 10}) == 16); // overload (2) int main() { namespace ranges = std::ranges; using namespace std::string_view_literals; std::cout << "larger of 1 and 9999: " << ranges::max(1, 9999) << '\n' << "larger of 'a', and 'b': '" << ranges::max('a', 'b') << "'\n" << "longest of \"foo\", \"bar\", and \"hello\": \"" << ranges::max({"foo"sv, "bar"sv, "hello"sv}, {}, &std::string_view::size) << "\"\n"; }
输出
larger of 1 and 9999: 9999 larger of 'a', and 'b': 'b' longest of "foo", "bar", and "hello": "hello"
[编辑] 参见
(C++20) |
返回给定值中较小的一个 (niebloid) |
(C++20) |
返回两个元素中较小的一个和较大的一个 (niebloid) |
(C++20) |
返回范围内最大的元素 (niebloid) |
(C++20) |
将值夹紧在一对边界值之间 (niebloid) |
返回给定值中较大的一个 (函数模板) |