Namespaces
Variants

std::ranges:: fold_right_last

From cppreference.net
Algorithm library
Constrained algorithms and algorithms on ranges (C++20)
Constrained algorithms, e.g. ranges::copy , ranges::sort , ...
Execution policies (C++17)
Non-modifying sequence operations
Batch operations
(C++17)
Search operations
Modifying sequence operations
Copy operations
(C++11)
(C++11)
Swap operations
Transformation operations
Generation operations
Removing operations
Order-changing operations
(until C++17) (C++11)
(C++20) (C++20)
Sampling operations
(C++17)

Sorting and related operations
Partitioning operations
Sorting operations
Binary search operations
(on partitioned ranges)
Set operations (on sorted ranges)
Merge operations (on sorted ranges)
Heap operations
Minimum/maximum operations
Lexicographical comparison operations
Permutation operations
C library
Numeric operations
Operations on uninitialized memory
Constrained algorithms
All names in this menu belong to namespace std::ranges
Non-modifying sequence operations
Modifying sequence operations
Partitioning operations
Sorting operations
Binary search operations (on sorted ranges)
Set operations (on sorted ranges)
Heap operations
Minimum/maximum operations
Permutation operations
Fold operations
(C++23)
fold_right_last
(C++23)
Operations on uninitialized storage
Return types
헤더 파일에 정의됨 <algorithm>
호출 서명
template < std:: bidirectional_iterator I, std:: sentinel_for < I > S,

/*indirectly-binary-right-foldable*/ < std:: iter_value_t < I > , I > F >
requires std:: constructible_from <
std:: iter_value_t < I > , std:: iter_reference_t < I >>
constexpr auto

fold_right_last ( I first, S last, F f ) ;
(1) (C++23부터)
template < ranges:: bidirectional_range R,

/*indirectly-binary-right-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

fold_right_last ( R && r, F f ) ;
(2) (C++23부터)
헬퍼 개념
template < class F, class T, class I >
concept /*indirectly-binary-left-foldable*/ = /* 설명 참조 */ ;
(3) ( 설명 전용* )
template < class F, class T, class I >
concept /*indirectly-binary-right-foldable*/ = /* 설명 참조 */ ;
(4) ( 설명 전용* )

주어진 범위의 요소들을 오른쪽- 폴드 합니다. 즉, 다음 체인 표현식의 평가 결과를 반환합니다:
f(x 1 , f(x 2 , ...f(x n-1 , x n ))) , 여기서 x 1 , x 2 , ..., x n 는 범위의 요소들입니다.

비공식적으로, ranges::fold_right_last ranges:: fold_left ( views:: reverse ( r ) , *-- last, /*flipped*/ ( f ) ) 와 유사하게 동작합니다(범위가 비어 있지 않다고 가정할 때).

동작은 [ first , last ) 가 유효한 범위가 아닌 경우 정의되지 않습니다.

1) 범위는 [ first , last ) 입니다. U decltype ( ranges:: fold_right ( first, last, std:: iter_value_t < I > ( * first ) , f ) ) 로 정의할 때, 다음 코드와 동일합니다:
if (first == last)
    return std::optional<U>();
I tail = ranges::prev(ranges::next(first, std::move(last)));
return std::optional<U>(std::in_place, ranges::fold_right(std::move(first), tail,
    std::iter_value_t<I>(*tail), std::move(f)));
2) (1) 과 동일하지만, r 를 범위로 사용하며, 마치 ranges:: begin ( r ) first 로, ranges:: end ( r ) last 로 사용하는 것과 같습니다.
3) 다음과 동등함:
Helper concepts
template < class F, class T, class I, class U >

concept /*indirectly-binary-left-foldable-impl*/ =
std:: movable < T > &&
std:: movable < U > &&
std:: convertible_to < T, U > &&
std:: invocable < F & , U, std:: iter_reference_t < I >> &&
std:: assignable_from < U & ,

std:: invoke_result_t < F & , U, std:: iter_reference_t < I >>> ;
(3A) ( 설명 전용* )
template < class F, class T, class I >

concept /*indirectly-binary-left-foldable*/ =
std:: copy_constructible < F > &&
std:: indirectly_readable < I > &&
std:: invocable < F & , T, std:: iter_reference_t < I >> &&
std:: convertible_to < std:: invoke_result_t < F & , T, std:: iter_reference_t < I >> ,
std:: decay_t < std:: invoke_result_t < F & , T, std:: iter_reference_t < I >>>> &&
/*indirectly-binary-left-foldable-impl*/ < F, T, I,

std:: decay_t < std:: invoke_result_t < F & , T, std:: iter_reference_t < I >>>> ;
(3B) ( 설명 전용* )
4) 다음과 동일함:
Helper concepts
template < class F, class T, class I >

concept /*indirectly-binary-right-foldable*/ =

/*indirectly-binary-left-foldable*/ < /*flipped*/ < F > , T, I > ;
(4A) ( 설명 전용* )
Helper class templates
template < class F >

class /*flipped*/
{
F f ; // exposition only
public :
template < class T, class U >
requires std:: invocable < F & , U, T >
std:: invoke_result_t < F & , U, T > operator ( ) ( T && , U && ) ;

} ;
(4B) ( 설명 전용* )

이 페이지에서 설명하는 함수형 개체들은 algorithm function objects (일반적으로 niebloids 로 알려진)입니다. 즉:

목차

매개변수

first, last - 접기할 요소들의 범위 를 정의하는 반복자-감시자 쌍
r - 접기할 요소들의 범위
f - 이항 함수 객체

반환값

주어진 범위에 대한 오른쪽 폴드 의 결과를 포함하는 std:: optional < U > 타입의 객체.

범위가 비어 있으면, std:: optional < U > ( ) 가 반환됩니다.

가능한 구현

struct fold_right_last_fn
{
    template<std::bidirectional_iterator I, std::sentinel_for<I> S,
             /*indirectly-binary-right-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_right(first, last, std::iter_value_t<I>(*first), f));
        if (first == last)
            return std::optional<U>();
        I tail = ranges::prev(ranges::next(first, std::move(last)));
        return std::optional<U>(std::in_place,
            ranges::fold_right(std::move(first), tail, std::iter_value_t<I>(*tail),
                               std::move(f)));
    }
    template<ranges::bidirectional_range R,
             /*indirectly_binary_right_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_right_last_fn fold_right_last;

복잡도

정확히 ranges:: distance ( first, last ) 번 함수 객체 f 가 적용됩니다.

참고 사항

다음 표는 모든 제약 조건을 가진 폴딩 알고리즘들을 비교한 것입니다:

폴드 함수 템플릿 시작 방향 초기값 반환 타입
ranges:: fold_left 왼쪽 init U
ranges:: fold_left_first 왼쪽 첫 번째 요소 std:: optional < U >
ranges:: fold_right 오른쪽 init U
ranges :: fold_right_last 오른쪽 마지막 요소 std:: optional < U >
ranges:: fold_left_with_iter 왼쪽 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 왼쪽 첫 번째 요소

(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 <functional>
#include <iostream>
#include <ranges>
#include <utility>
#include <vector>
int main()
{
    auto v = {1, 2, 3, 4, 5, 6, 7, 8};
    std::vector<std::string> vs {"A", "B", "C", "D"};
    auto r1 = std::ranges::fold_right_last(v.begin(), v.end(), std::plus<>()); // (1)
    std::cout << "*r1: " << *r1 << '\n';
    auto r2 = std::ranges::fold_right_last(vs, std::plus<>()); // (2)
    std::cout << "*r2: " << *r2 << '\n';
    // 프로그램 정의 함수 객체 사용 (람다 표현식):
    auto r3 = std::ranges::fold_right_last(v, [](int x, int y) { return x + y + 99; });
    std::cout << "*r3: " << *r3 << '\n';
    // 벡터 내 모든 pair의 second 값의 곱 구하기:
    std::vector<std::pair<char, float>> data {{'A', 3.f}, {'B', 3.5f}, {'C', 4.f}};
    auto r4 = std::ranges::fold_right_last
    (
        data | std::ranges::views::values, std::multiplies<>()
    );
    std::cout << "*r4: " << *r4 << '\n';
}

출력:

*r1: 36
*r2: ABCD
*r3: 729
*r4: 42

참고문헌

  • C++23 표준 (ISO/IEC 14882:2024):
  • 27.6.18 Fold [alg.fold]

참고 항목

요소 범위를 오른쪽으로 폴딩
(알고리즘 함수 객체)
요소 범위를 왼쪽으로 폴딩
(알고리즘 함수 객체)
첫 번째 요소를 초기값으로 사용하여 요소 범위를 왼쪽으로 폴딩
(알고리즘 함수 객체)
요소 범위를 왼쪽으로 폴딩하고 pair (반복자, 값)을 반환
(알고리즘 함수 객체)
첫 번째 요소를 초기값으로 사용하여 요소 범위를 왼쪽으로 폴딩하고 pair (반복자, optional )을 반환
(알고리즘 함수 객체)
요소 범위를 합산하거나 폴딩
(함수 템플릿)
(C++17)
std::accumulate 와 유사하지만 순서가 보장되지 않음
(함수 템플릿)