std::unordered_map::count
STD:无序[医]地图::计数
size_type count( const Key& key ) const; | (1) | (since C++11) |
---|
返回与指定参数相等的键的元素数。key
,因为这个容器不允许重复,所以它要么是1,要么是0。
参数
key | - | key value of the elements to count |
---|
返回值
带键的元素数key
,要么是1,要么是0。
复杂性
常量,最坏情况下,容器的大小是线性的。
另见
find | finds element with specific key (public member function) |
---|---|
equal_range | returns range of elements matching a specific key (public member function) |
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。