C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- std::array
- std::vector
- std::map
- std::unordered_map
- std::priority_queue
- std::span
- std::forward_list
- std::deque
- std::list
- std::list<T,Allocator>::list
- std::list<T,Allocator>::~list
- std::list<T,Allocator>::operator=
- std::list<T,Allocator>::unique
- std::list<T,Allocator>::empty
- std::set
- std::multiset
- std::multimap
- std::unordered_set
- std::unordered_multiset
- std::unordered_multimap
- std::stack
- std::queue
- std::vector<bool>
- 结点把柄 (C++17)
- 注释
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::list<T,Allocator>::unique
(1) | ||
void unique(); |
(C++20 前) | |
size_type unique(); |
(C++20 起) | |
(2) | ||
template< class BinaryPredicate > void unique( BinaryPredicate p ); |
(C++20 前) | |
template< class BinaryPredicate > size_type unique( BinaryPredicate p ); |
(C++20 起) | |
从容器移除所有相继的重复元素。只留下相等元素组中的第一个元素。第一版本用 operator==
比较元素,第二版本用二元谓词 p
比较元素
参数
p | - | 若元素应被当做相等则返回 true 的二元谓词。 谓词函数的签名应等价于如下: bool pred(const Type1 &a, const Type2 &b); 虽然签名不必有 const & ,函数也不能修改传递给它的对象,而且必须接受(可为 const 的)类型 |
返回值
(无) |
(C++20 前) |
移除的元素数。 |
(C++20 起) |
复杂度
与容器大小成线性
示例
运行此代码
#include <iostream> #include <list> int main() { std::list<int> x = {1, 2, 2, 3, 3, 2, 1, 1, 2}; std::cout << "contents before:"; for (auto val : x) std::cout << ' ' << val; std::cout << '\n'; x.unique(); std::cout << "contents after unique():"; for (auto val : x) std::cout << ' ' << val; std::cout << '\n'; return 0; }
输出:
contents before: 1 2 2 3 3 2 1 1 2 contents after unique(): 1 2 3 2 1 2
参阅
移除范围内的连续重复元素 (函数模板) |