std::unordered_map<Key,T,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 <iostream> #include <string> #include <unordered_map> int main() { std::unordered_map<int, std::string> dict = { {1, "one"}, {6, "six"}, {3, "three"} }; dict.insert({4, "four"}); dict.insert({5, "five"}); dict.insert({6, "six"}); std::cout << "dict: { "; for (auto const& [key, value] : dict) std::cout << '[' << key << "]=" << value << ' '; std::cout << "}\n\n"; for (int i{1}; i != 8; ++i) std::cout << "dict.count(" << i << ") = " << dict.count(i) << '\n'; }
可能的输出
dict: { [5]=five [4]=four [1]=one [6]=six [3]=three } dict.count(1) = 1 dict.count(2) = 0 dict.count(3) = 1 dict.count(4) = 1 dict.count(5) = 1 dict.count(6) = 1 dict.count(7) = 0
[编辑] 另请参阅
查找具有特定键的元素 (公有成员函数) | |
(C++20) |
检查容器是否包含具有特定键的元素 (公有成员函数) |
返回匹配特定键的元素范围 (公有成员函数) |