Using C++ STL Algorithms without Lambdas is an Advantage
A common complaint about C++ is that there are no lambdas (this will be fixed in C++0x), and most claim this makes STL algorithms like for_each, transform, accumulate almost useless because you have to create functions or functors somewhere else.
Not having lambdas is a GOOD thing. Although