multimap::count是C++ STL中的内置函数,该函数返回在多图容器中存在键的次数。
用法:
multimap_name.count(key)
参数:该函数接受一个强制性参数键,该键指定要返回其在多图容器中计数的键。
返回值:该函数返回键在多图容器中存在的次数。
// C++ function for illustration
// multiset::count() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialize container
multimap<int, int> mp;
// insert elements in random order
mp.insert({ 2, 30 });
mp.insert({ 1, 40 });
mp.insert({ 2, 60 });
mp.insert({ 2, 20 });
mp.insert({ 1, 50 });
mp.insert({ 4, 50 });
// count the number of times
// 1 is there in the multimap
cout << "1 exists " << mp.count(1)
<< " times in the multimap\n";
// count the number of times
// 2 is there in the multimap
cout << "2 exists " << mp.count(2)
<< " times in the multimap\n";
return 0;
}
输出:
1 exists 2 times in the multimap 2 exists 3 times in the multimap
相关用法
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 multimap::count() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。