public member function
<unordered_map>
std::unordered_map::count
size_type count ( const key_type& k ) const;
Count elements with a specific key
Parameters
- k
- Key value to be searched for.
Member type key_type is the type of the keys for the elements in the container, defined in unordered_map as an alias of its first template parameter (Key).
Return value
1 if an element with a key equivalent to k is found, or zero otherwise.Member type
size_type is an unsigned integral type.Example
|
|
Output:
mymap has Burger mymap has no Pizza mymap has no Salad mymap has Soda
Complexity
Average case: linear in the number of elements counted.Worst case: linear in container size.
Iterator validity
No changes.See also
- unordered_map::find
- Get iterator to element (public member function)
- unordered_map::operator[]
- Access element (public member function)
- unordered_map::at
- Access element (public member function)
- unordered_map::size
- Return container size (public member function)