24.STL Algorithms Modifying sequence operations
  24.1.fill( 5 )  24.14.replace_copy( 4 ) 
  24.2.fill_n( 5 )  24.15.replace_copy_if( 4 ) 
  24.3.generate( 6 )  24.16.reverse( 5 ) 
  24.4.generate_n( 6 )  24.17.reverse_copy( 3 ) 
  24.5.iter_swap( 2 )  24.18.rotate( 7 ) 
  24.6.partition( 2 )  24.19.rotate_copy( 3 ) 
  24.7.random_shuffle( 7 )  24.20.stable_partition( 2 ) 
  24.8.remove( 7 )  24.21.swap( 4 ) 
  24.9.remove_copy( 5 )  24.22.swap_ranges( 4 ) 
  24.10.remove_copy_if( 3 )  24.23.transform( 14 ) 
  24.11.remove_if( 7 )  24.24.unique copy( 7 ) 
  24.12.replace if( 4 )  24.25.unique( 3 ) 
  24.13.replace( 7 )   
25.STL Algorithms Non modifying sequence operations
  25.1.adjacent_find( 4 )  25.8.find( 15 ) 
  25.2.copy( 15 )  25.9.find_end( 2 ) 
  25.3.copy_backward( 4 )  25.10.find_first_of( 2 ) 
  25.4.count( 5 )  25.11.for_each( 9 ) 
  25.5.count_if( 2 )  25.12.mismatch( 5 ) 
  25.6.equal( 3 )  25.13.search( 2 ) 
  25.7.find if( 7 )  25.14.search_n( 3 ) 
26.STL Algorithms Binary search
  26.1.binary_search( 5 )  26.3.lower_bound( 3 ) 
  26.2.equal_range( 6 )  26.4.upper_bound( 4 ) 
27.STL Algorithms Sorting
  27.1.sort( 9 )  27.5.partial_sort( 4 ) 
  27.2.custom comparer( 2 )  27.6.partial_sort_copy( 2 ) 
  27.3.lexicographical_compare( 2 )  27.7.nth_element( 4 ) 
  27.4.stable_sort( 1 )   
28.STL Algorithms Merge
  28.1.includes( 3 )  28.5.set_intersection( 3 ) 
  28.2.inplace_merge( 4 )  28.6.set_symmetric_difference( 3 ) 
  28.3.merge( 6 )  28.7.set_union( 3 ) 
  28.4.set_difference( 3 )   
29.STL Algorithms Min Max
  29.1.max( 3 )  29.3.min( 3 ) 
  29.2.max_element( 4 )  29.4.min_element( 4 ) 
30.STL Algorithms Iterator
  30.1.iterator( 4 )  30.6.reverse_iterator( 2 ) 
  30.2.const_interator( 3 )  30.7.template iterators( 2 ) 
  30.3.const_reverse_iterator( 1 )  30.8.custom iterater( 4 ) 
  30.4.insert_iterator( 4 )  30.9.back_insert_iterator( 1 ) 
  30.5.istream iterator( 7 )  30.10.ostream_interator( 2 ) 
31.STL Algorithms Heap
  31.1.make_heap( 3 )  31.3.push_heap( 2 ) 
  31.2.pop_heap( 2 )  31.4.sort heap( 2 ) 
32.STL Algorithms Helper
  32.1.divides( 1 )  32.10.inner_product( 3 ) 
  32.2.negate( 1 )  32.11.make_pair( 1 ) 
  32.3.accumulate( 5 )  32.12.multiply( 2 ) 
  32.4.adjacent_difference( 4 )  32.13.next_permutation( 5 ) 
  32.5.back_inserter( 2 )  32.14.prev_permutation( 3 ) 
  32.6.bind2nd( 6 )  32.15.numeric_limits( 4 ) 
  32.7.distance( 2 )  32.16.partial_sum( 3 ) 
  32.8.gslice( 1 )  32.17.not1( 3 ) 
  32.9.slice( 1 )