Rearrange a vector such that all of the elements that are equal to zero precede all nonzero elements.
vector<int> V;
…
partition(V.begin(), V.end(), bind2nd(equal_to<int>(), 0));
Defined in the standard header functional, and in the nonstandard backward-compatibility header function.h.
Parameter | Description |
---|---|
T | The type of |
Adaptable Binary Predicate, DefaultConstructible
binary_function<T, T, bool>.
Member | Where defined | Description |
---|---|---|
first_argument_type | Adaptable Binary Predicate | The type of the first argument: |
second_argument_type | Adaptable Binary Predicate | The type of the second argument: |
result_type | Adaptable Binary Predicate | The type of the result: |
equal_to() | DefaultConstructible | The default constructor. |
bool operator()(const T& x, const T& y) | Binary Function | Function call operator. The return value is |
All of
The function object overview, Adaptable Binary Predicate,
not_equal_to<T>
Category: functors
Component type: type
Finds the first nonzero element in a list.
list<int> L;
…
list<int>::iterator first_nonzero = find_if(L.begin(), L.end(), bind2nd(not_equal_to<int> (), 0));
assert(first_nonzero == L.end() || *first_nonzero != 0);
Defined in the standard header functional, and in the nonstandard backward-compatibility header function.h.