std::ranges::max
From 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 の中の最初の最大の値を返します。
このページで説明されている関数のようなエンティティは、アルゴリズム関数オブジェクト(非公式にはニーブロイドとして知られている)です。つまり、
- これらのいずれかを呼び出す際に、明示的なテンプレート引数リストを指定することはできません。
- これらのいずれも実引数依存の名前探索には見えません。
- これらのいずれかが関数呼び出し演算子の左側の名前として通常の非修飾名探索によって見つかった場合、実引数依存の名前探索は抑制されます。
目次 |
[編集] パラメータ
| a, b | - | 比較する値 |
| r | - | 比較する値の範囲 |
| comp | - | 射影された要素に適用される比較 |
| proj | - | 要素に適用する射影 |
[編集] 戻り値
1) それぞれの射影された値に従って、a と b のうち大きい方を返します。それらが等しい場合は、a を返します。
2,3) 射影に従って、r の中の最大の値を返します。最大の等しい値が複数ある場合は、最も左にあるものを返します。範囲が空の場合(ranges::distance(r) によって決定される)、動作は未定義です。
[編集] 計算量
1) ちょうど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) |
与えられた値のうち小さい方を返す (アルゴリズム関数オブジェクト) |
| (C++20) |
2つの要素の小さい方と大きい方を返す (アルゴリズム関数オブジェクト) |
| (C++20) |
範囲内で最大の要素を返す (アルゴリズム関数オブジェクト) |
| (C++20) |
値を一対の境界値の間に制限する (アルゴリズム関数オブジェクト) |
| 与えられた値のうち大きい方を返す (関数テンプレート) |