I need analog of Haskell's foldl function to fold any STL containers. Expected signature is like following:

template Iterator, FoldingFunction, Result
Result foldl(
  Iterator begin, 
  Iterator end, 
  FoldingFunction f, 
  Result initValue);

Standard STL has no such function. Does Boost have any?

I know it's pretty simple to implement, but I'd like to know whether there's any ready standardized implementation.

And one more question: how do you usually fold data lists in C++/STL?

Thanks.

link|improve this question

59% accept rate
3  
What on earth do you mean by 'fold' ?? – Konrad Oct 11 '10 at 13:50
2  
@Konrad: fold = reduce = accumulate. – KennyTM Oct 11 '10 at 13:52
2  
@Konrad - process a data structure in some order and build a return value. haskell.org/haskellwiki/Fold – DumbCoder Oct 11 '10 at 13:52
Aha, thanks guys. – Konrad Oct 11 '10 at 13:55
feedback

3 Answers

up vote 16 down vote accepted

STL does have such a function: std::accumulate. However, it is in the header <numeric>, not <algorithm>.

Actually the Wikipedia page on "Fold" already listed the foldl/foldr functions on most programming languages, including C++.

link|improve this answer
@KennyTM: Especially thanks for Wiki reference. – Andrey Oct 11 '10 at 14:05
Note that accumulate uses the value_type of the iterator arguments for the internal accumulator variable, despite accepting and returning a distinct type, and allowing other types still in the functor argument. – Potatoswatter Oct 12 '10 at 0:04
@Potatoswatter: I don't see this from accumulate definition:TYPE accumulate( input_iterator start, input_iterator end, TYPE val, BinaryFunction f ); – Andrey Oct 12 '10 at 15:39
@Andrey: Never mind. I was thinking of Defect Report 539 (open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#539). accumulate uses the proper internal type. – Potatoswatter Oct 12 '10 at 15:50
1  
@user: Use the reverse iterator for foldr. – KennyTM May 11 '11 at 19:16
show 2 more comments
feedback

Have you looked at std::accumulate in the <numeric> header?

link|improve this answer
It's std::accumulate. It's in the std namespace, but in the <numeric> header. :) – jalf Oct 11 '10 at 17:11
@jalf keep 'em coming. Only way I stay in line. :P – wheaties Oct 11 '10 at 17:48
feedback

Although std:: accumulate seems to be the best candidate, I think that the requirement can be achieved by using good old for_each too.

I took the examples from the link in the answer of KennyTM, and translated all of them to for_each. The full code is posted at codepad, following is some excerpt:

struct result_functor {
    result_functor( int initial, int multiplier ) :
        result_( initial ), multiplier_( multiplier ) {
    }
    int operator()( int x ) {
        result_ += multiplier_ * x;
        return result_;
    }
    int result_;
    int multiplier_;
};

const int init = 100;
const int numbers[] = { 10, 20, 30 };

const int accum_sum = std::accumulate( numbers, numbers + 3, init );
const result_functor for_sum = for_each( 
    numbers, numbers + 3, result_functor( init, +1 ) );
assert( accum_sum == for_sum.result_ );
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.