Filling
fill(f,f,& ) | Set every item in a range to a particular value. |
fill_n(o,n,& ) | Set n items to a particular value. |
Generating
generate(f,f,pfunc) | Fill a range with generated values. |
generate_n(o,n,pfunc) | Generate a specified number of values. |
Filtering , should used on sorted container
| Collapse each group of consecutive duplicate values to a single value, and return an iterator pointing to the end of the modified range. |
||
| Copy a range of values, performing the same action as unique above, and return an iterator pointing to the end of the new range. |
||
Heap
| Make a range of values into a heap. | It nees random
iterator.
priority_queue
use them
inside. You
don’t use them
directly |
||
| Delete the first value from a heap. |
|
||
| Insert the last value of a range into a heap. |
|
||
| Sort a heap. |
|
||