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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。