El multimap::count es una función incorporada en C++ STL que devuelve el número de veces que una clave está presente en el contenedor de mapas múltiples.
Sintaxis:
multimap_name.count(key)
Parámetros: la función acepta una clave de parámetro obligatoria que especifica la clave cuyo recuento en el contenedor multimapa se devolverá.
Valor devuelto: la función devuelve el número de veces que una clave está presente en el contenedor multimapa.
// C++ function for illustration // multimap::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; }
Producción:
1 exists 2 times in the multimap 2 exists 3 times in the multimap