C++ 地图库 - count() 函数


描述

C++ 函数std::multimap::count()返回与键k关联的映射值的数量。

宣言

以下是 std::multimap::count() 函数形式 std::map 标头的声明。

C++98

size_type count (const key_type& k) const;

参数

k - 搜索操作键。

返回值

返回与键关联的值的数量。

例外情况

如果抛出异常,对容器没有影响。

时间复杂度

对数即 O(log n)

例子

以下示例显示了 std::multimap::count() 函数的用法。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   /* Multimap with duplicates */
   multimap<char, int> m {
         {'a', 1},
         {'a', 2},
         {'b', 3},
         {'c', 4},
         {'c', 5},
               };

   cout << "count of 'a' = " << m.count('a') << endl;
   cout << "count of 'b' = " << m.count('b') << endl;
   cout << "count of 'c' = " << m.count('c') << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

count of 'a' = 2
count of 'b' = 1
count of 'c' = 2
地图.htm