std::unordered_multimap<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 相比较相等的键的元素数量。
2) 返回与指定参数 x 相比较等效的键的元素数量。此重载仅在 Hash::is_transparent 和 KeyEqual::is_transparent 有效且分别表示类型时才参与重载解析。这假定这样的
Hash
可以同时使用 K
和 Key
类型调用,并且 KeyEqual
是透明的,这使得能够在不构造 Key
实例的情况下调用此函数。内容 |
[编辑] 参数
键 | - | 要计数的元素的键值 |
x | - | 任何类型的值,可以与键透明地比较 |
[编辑] 返回值
1) 键为 key 的元素数量。
2) 键与 x 相比较等效的元素数量。
[编辑] 复杂度
平均情况下,线性于键为 key 的元素数量,最坏情况下,线性于容器的大小。
[编辑] 注释
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_generic_unordered_lookup |
201811L | (C++20) | 在 无序关联容器 中进行异构比较查找,重载 (2) |
[编辑] 示例
运行此代码
#include <iostream> #include <string> #include <unordered_map> int main() { std::unordered_multimap<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 [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) = 2 dict.count(7) = 0
[编辑] 另请参见
查找具有特定键的元素 (公共成员函数) | |
(C++20) |
检查容器是否包含具有特定键的元素 (公共成员函数) |
返回与特定键匹配的元素范围 (公共成员函数) |