std::ranges::fold_left_first
定义于头文件 <algorithm> |
||
调用签名 (Call signature) |
||
template< std::input_iterator I, std::sentinel_for<I> S, /*indirectly-binary-left-foldable*/<std::iter_value_t<I>, I> F > |
(1) | (C++23 起) |
template< ranges::input_range R, /*indirectly-binary-left-foldable*/< |
(2) | (C++23 起) |
辅助概念 |
||
template< class F, class T, class I > concept /*indirectly-binary-left-foldable*/ = /* 参见描述 */; |
(3) | (仅作说明*) |
对给定范围的元素进行左折叠,即返回链式表达式求值的结果f(f(f(f(x1, x2), x3), ...), xn)
,其中 x1
, x2
, ..., xn
是范围内的元素。
非正式地,ranges::fold_left_first
的行为类似于 std::accumulate 接受二元谓词的重载,不同之处在于 *first 在内部用作初始元素。
如果 [
first,
last)
不是有效范围,则行为未定义。
辅助概念 |
||
template< class F, class T, class I, class U > concept /*indirectly-binary-left-foldable-impl*/ = |
(3A) | (仅作说明*) |
template< class F, class T, class I > concept /*indirectly-binary-left-foldable*/ = |
(3B) | (仅作说明*) |
本页描述的类函数实体是 算法函数对象(非正式地称为 niebloids),即
- 调用它们中的任何一个时,不能指定显式模板参数列表。
- 它们中的任何一个都对 参数依赖查找 不可见。
- 当其中任何一个通过 normal unqualified lookup 作为函数调用运算符左侧的名称被找到时,argument-dependent lookup 会被抑制。
目录 |
[编辑] 参数
first, last | - | 定义要折叠的元素范围的迭代器-哨兵对 |
r | - | 要折叠的元素范围 |
f | - | 二元函数对象 |
[编辑] 返回值
一个类型为 std::optional<U> 的对象,其中包含给定范围在 f 上的左折叠结果,其中 U 等效于 decltype(ranges::fold_left(std::move(first), last, std::iter_value_t<I>(*first), f))。
如果范围为空,则返回 std::optional<U>()。
[编辑] 可能的实现
struct fold_left_first_fn { template<std::input_iterator I, std::sentinel_for<I> S, /*indirectly-binary-left-foldable*/<std::iter_value_t<I>, I> F> requires std::constructible_from<std::iter_value_t<I>, std::iter_reference_t<I>> constexpr auto operator()(I first, S last, F f) const { using U = decltype( ranges::fold_left(std::move(first), last, std::iter_value_t<I>(*first), f) ); if (first == last) return std::optional<U>(); std::optional<U> init(std::in_place, *first); for (++first; first != last; ++first) *init = std::invoke(f, std::move(*init), *first); return std::move(init); } template<ranges::input_range R, /*indirectly-binary-left-foldable*/< ranges::range_value_t<R>, ranges::iterator_t<R>> F> requires std::constructible_from<ranges::range_value_t<R>, ranges::range_reference_t<R>> constexpr auto operator()(R&& r, F f) const { return (*this)(ranges::begin(r), ranges::end(r), std::ref(f)); } }; inline constexpr fold_left_first_fn fold_left_first; |
[编辑] 复杂度
函数对象 f 的应用次数正好是 ranges::distance(first, last) - 1(假设范围不为空)。
[编辑] 注记
下表比较了所有受限折叠算法
折叠函数模板 | 开始方向 | 初始值 | 返回类型 |
---|---|---|---|
ranges::fold_left | left | init | U |
ranges::fold_left_first | left | 第一个元素 | std::optional<U> |
ranges::fold_right | right | init | U |
ranges::fold_right_last | right | 最后一个元素 | std::optional<U> |
ranges::fold_left_with_iter | left | init |
(1) ranges::in_value_result<I, U> (2) ranges::in_value_result<BR, U>, 其中 BR 是 ranges::borrowed_iterator_t<R> |
ranges::fold_left_first_with_iter | left | 第一个元素 |
(1) ranges::in_value_result<I, std::optional<U>> (2) ranges::in_value_result<BR, std::optional<U>> 其中 BR 是 ranges::borrowed_iterator_t<R> |
特性测试宏 | 值 | 标准 | 特性 |
---|---|---|---|
__cpp_lib_ranges_fold |
202207L |
(C++23) | std::ranges 折叠算法 |
[编辑] 示例
#include <algorithm> #include <array> #include <functional> #include <ranges> #include <utility> int main() { constexpr std::array v{1, 2, 3, 4, 5, 6, 7, 8}; static_assert ( *std::ranges::fold_left_first(v.begin(), v.end(), std::plus{}) == 36 && *std::ranges::fold_left_first(v, std::multiplies{}) == 40320 ); constexpr std::array w { 1, 2, 3, 4, 13, 1, 2, 3, 4, 13, 1, 2, 3, 4, 13, 1, 2, 3, 4, }; static_assert ( "Find the only value that (by precondition) occurs odd number of times:" && *std::ranges::fold_left_first(w, [](int p, int q){ return p ^ q; }) == 13 ); constexpr auto pairs = std::to_array<std::pair<char, float>> ({ {'A', 3.0f}, {'B', 3.5f}, {'C', 4.0f} }); static_assert ( "Get the product of all pair::second in pairs:" && *std::ranges::fold_left_first ( pairs | std::ranges::views::values, std::multiplies{} ) == 42 ); }
[编辑] 参考
- C++23 标准 (ISO/IEC 14882:2024)
- 27.6.18 折叠 [alg.fold]
[编辑] 参阅
(C++23) |
对一个范围的元素进行左折叠 (算法函数对象) |
(C++23) |
对一个范围的元素进行右折叠 (算法函数对象) |
(C++23) |
使用最后一个元素作为初始值对一个范围的元素进行右折叠 (算法函数对象) |
(C++23) |
对一个范围的元素进行左折叠,并返回一个 pair (迭代器, 值) (算法函数对象) |
左折叠元素范围,使用第一个元素作为初始值,并返回一个 pair (迭代器, optional) (算法函数对象) | |
对一个范围的元素进行求和或折叠 (函数模板) | |
(C++17) |
类似于 std::accumulate,但顺序是乱序的 (函数模板) |