std::list<T,Allocator>::unique
(1) | ||
void unique(); |
(until C++20) | |
size_type unique(); |
(since C++20) | |
(2) | ||
template< class BinaryPredicate > void unique( BinaryPredicate p ); |
(until C++20) | |
template< class BinaryPredicate > size_type unique( BinaryPredicate p ); |
(since C++20) | |
Removes all consecutive duplicate elements from the container. Only the first element in each group of equal elements is left. The behavior is undefined if the selected comparator does not establish an equivalence relation.
p
to compare the elements.Parameters
p | - | binary predicate which returns true if the elements should be treated as equal. The signature of the predicate function should be equivalent to the following: bool pred(const Type1 &a, const Type2 &b); While the signature does not need to have const &, the function must not modify the objects passed to it and must be able to accept all values of type (possibly const) |
Return value
(none) |
(until C++20) |
The number of elements removed. |
(since C++20) |
Complexity
Exactly size() - 1 comparisons of the elements, if the container is not empty. Otherwise, no comparison is performed.
Example
#include <iostream> #include <list> auto print = [](auto remark, auto const& container) { std::cout << remark; for (auto const& val : container) std::cout << ' ' << val; std::cout << '\n'; }; int main() { std::list<int> c = {1, 2, 2, 3, 3, 2, 1, 1, 2}; print("Before unique():", c); c.unique(); print("After unique():", c); c = {1, 2, 12, 23, 3, 2, 51, 1, 2}; print("Before unique(pred):", c); c.unique([mod=10](int x, int y) { return (x % mod) == (y % mod); }); print("After unique(pred):", c); }
Output:
Before unique(): 1 2 2 3 3 2 1 1 2 After unique(): 1 2 3 2 1 2 Before unique(pred): 1 2 12 23 3 2 51 1 2 After unique(pred): 1 2 23 2 51 2
See also
removes consecutive duplicate elements in a range (function template) |