Algorithms icon indicating copy to clipboard operation
Algorithms copied to clipboard

STL Algorithm Cheat Sheet + example code from STL Algorithm Video Series.

Results 1 Algorithms issues
Sort by recently updated
recently updated
newest added

The examples of count and any_of implemented using reduce aren't correct: https://github.com/codereport/Algorithms/blob/master/stl_14_reduce_accumulate.cpp. Because reduce can be applied out of order, you have to have associative, commutative functions. The functions being...