std::unordered_set<Key,Hash,KeyEqual,Allocator>::count
来自 cppreference.com
size_type count( const Key& key ) const; |
(1) | (自 C++11 起) |
template< class K > size_type count( const K& x ) const; |
(2) | (自 C++20 起) |
1) 返回与指定参数 key 相等的键的元素数量,由于此容器不允许重复,因此该数量为 0 或 1。
2) 返回与指定参数 x 相等的键的元素数量。只有当 Hash::is_transparent 和 KeyEqual::is_transparent 有效且都表示一个类型时,此重载才参与重载解析。这假设这样的
Hash
可以用 K
和 Key
类型调用,并且 KeyEqual
是透明的,这使得可以调用此函数而无需构造 Key
的实例。内容 |
[编辑] 参数
key | - | 要计数的元素的键值 |
x | - | 可以与键透明比较的任何类型的值 |
[编辑] 返回值
1) 键为 key 的元素数量,即 1 或 0。
2) 与 x 相等的键的元素数量。
[编辑] 复杂度
平均情况下为常数,最坏情况下为容器大小的线性。
[编辑] 注意事项
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_generic_unordered_lookup |
201811L | (C++20) | 在 无序关联容器 中异构比较查找,重载 (2) |
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <unordered_set> int main() { std::unordered_set set{2, 7, 1, 8, 2, 8, 1, 8, 2, 8}; std::cout << "The set is: "; for (int e : set) std::cout << e << ' '; const auto [min, max] = std::ranges::minmax(set); std::cout << "\nNumbers from " << min << " to " << max << " that are in the set: "; for (int i{min}; i <= max; ++i) if (set.count(i) == 1) std::cout << i << ' '; std::cout << '\n'; }
可能输出
The set is: 8 1 7 2 Numbers from 1 to 8 that are in the set: 1 2 7 8
[编辑] 另请参阅
查找具有特定键的元素 (公共成员函数) | |
(C++20) |
检查容器是否包含具有特定键的元素 (公共成员函数) |
返回与特定键匹配的元素范围 (公共成员函数) |