public member function
<unordered_map>

std::unordered_multimap::count

size_type count ( const key_type& k ) const;
计算具有特定键的元素
搜索容器中键为 k 的元素,并返回找到的元素数量。

参数

k
要搜索的键值。
成员类型key_type是容器中元素的键的类型,在 unordered_multimap 中定义为其第一个模板参数().

返回值

容器中键等于 k 的元素数量。

成员类型size_type是一种无符号整型类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// unordered_multimap::count
#include <iostream>
#include <string>
#include <unordered_map>

int main ()
{
  std::unordered_multimap<std::string,std::string> myumm = {
     {"orange","FL"},
     {"strawberry","LA"},
     {"strawberry","OK"},
     {"pumpkin","NH"} };

  for (auto& x: {"orange","lemon","strawberry"}) {
    std::cout << x << ": " << myumm.count(x) << " entries.\n";
  }

  return 0;
}

输出
orange: 1 entries.
lemon: 0 entries.
strawberry: 2 entries.


复杂度

平均情况:与计数元素数量成线性关系。
最坏情况:相对于 容器大小 线性。

迭代器有效性

没有变化。

另见