Rogue Wave banner
Previous fileTop of documentContentsIndexNext file

remove


Algorithm

Summary

Moves desired elements to the front of a container, and returns an iterator that describes where the sequence of desired elements ends.

Data Type and Member Function Indexes
(exclusive of constructors and destructors)

None

Synopsis

#include <algorithm>
template <class ForwardIterator, class T>
ForwardIterator 
remove (ForwardIterator first,
        ForwardIterator last,
        const T& value);

Description

The remove algorithm eliminates all the elements referred to by iterator i in the range [first, last) for which the following condition holds: *i == value. remove returns an iterator that points to the end of the resulting range. remove is stable, which means that the relative order of the elements that are not removed is the same as their relative order in the original range.

remove does not actually reduce the size of the sequence. It actually: 1) copies the values that are to be retained to the front of the sequence, and 2) returns an iterator that describes where the sequence of retained values ends. Elements that follow this iterator are simply the original sequence values, left unchanged. Here's a simple example:

Say we want to remove all values of "2" from the following sequence:

354621271

Applying the remove algorithm results in the following sequence:

3546171|XX

The vertical bar represents the position of the iterator returned by remove. Note that the elements to the left of the vertical bar are the original sequence with the "2s" removed.

If you want to actually delete items from the container, use the following technique:

container.erase(remove(first,last,value),container.end());

Complexity

Exactly last1 - first1 applications of the corresponding predicate are done.

Example

Program Output

Warnings

If your compiler does not support default template parameters, you always need to supply the Allocator template argument. For instance, you need to write:

vector<int, allocator<int> >

instead of:

vector<int>

If your compiler does not support namespaces, then you do not need the using declaration for std.

See Also

remove_if, remove_copy, remove_copy_if



Previous fileTop of documentContentsIndexNext file
©Copyright 1998, Rogue Wave Software, Inc.
Send mail to report errors or comment on the documentation.
OEM Release, June 1998