STL Algorithms Modifying sequence operations « C++ Tutorial






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 )