C++11
- // <unordered_set>
- template < class Key,
- class Hash = hash<Key>,
- class Pred = equal_to<Key>,
- class Alloc = allocator<Key>
- > class unordered_set;
无序集合(Unordered Set)容器是一个存储唯一(Unique,即无重复)元素的关联容器(Associative container),容器中的元素无特别的次序关系。该容器允许基于值地快速元素检索。
An unordered_set is an unordered associative container that supports unique keys (an unordered_set contains at most one of each key value) and in which the elements’ keys are the elements themselves.
容器特性:
关联(Associative)
关联容器中的元素是通过主键(Key)而不是它们在容器中的绝对位置来引用的。
无序(Unordered)
无序容器通过 hash 表来组织它们的元素,允许通过主键快速地访问元素。
集合(Set)
元素的值同时可以用来标志对应的元素。
键唯一(Unique keys)
容器中不存在两个元素有相同的主键。
能够感知内存分配器的(Allocator-aware)
容器使用一个内存分配器对象来动态地处理它的存储需求。
所有评论(0)