描述
C++ 函数std::multimap::count()返回与键关联的映射值的数量k。
声明
以下是 std::multimap::count() 函数形式 std::map 头的声明。
C++98
size_type count (const key_type& k) const;
参数
k─ 搜索操作的键。
返回值
返回与键关联的值的数量。
异常
如果抛出异常,对容器没有影响。
时间复杂度
对数,即 O(log n)
示例
下面的例子展示了 std::multimap::count() 函数的用法。
#include <iostream>
#include <map>
using namespace std;
int main(void) {
/* Multimap with duplicates */
multimap<char, int> m {
{'a', 1},
{'a', 2},
{'b', 3},
{'c', 4},
{'c', 5},
};
cout << "count of 'a' = " << m.count('a') << endl;
cout << "count of 'b' = " << m.count('b') << endl;
cout << "count of 'c' = " << m.count('c') << endl;
return 0;
}
让我们编译并运行上面的程序,这将产生以下结果——
count of 'a' = 2 count of 'b' = 1 count of 'c' = 2
相关用法
- C++ Map crend()用法及代码示例
- C++ Map clear()用法及代码示例
- C++ Map cend()用法及代码示例
- C++ Map crbegin()用法及代码示例
- C++ Map cbegin()用法及代码示例
- C++ Map erase()用法及代码示例
- C++ Map rend()用法及代码示例
- C++ Map multimap()用法及代码示例
- C++ Map emplace()用法及代码示例
- C++ Map at()用法及代码示例
- C++ Map size()用法及代码示例
- C++ Map end()用法及代码示例
- C++ Map get_allocator()用法及代码示例
- C++ Map max_size()用法及代码示例
- C++ Map begin()用法及代码示例
- C++ Map map()用法及代码示例
- C++ Map rbegin()用法及代码示例
- C++ Map upper_bound()用法及代码示例
- C++ Map key_comp()用法及代码示例
- C++ Map value_comp()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Map Library - count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。