unordered_map :: count()是C++中的内置方法,用于计算具有给定键的unordered_map中存在的元素数。
注意:由于unordered_map不允许存储具有重复键的元素,因此count()函数基本上检查在unordered_map中是否存在具有给定键的元素。
语法:
size_type count(Key);
参数:此函数接受单个参数键,需要在给定的unordered_map容器中进行检查。
返回值:如果映射中存在具有给定键的值,则此函数返回1,否则返回0。
下面的程序说明了unordered_map :: count()函数:
程序1 :
// C++ program to illustrate the
// unordered_map::count() function
#include
#include
using namespace std;
int main()
{
// unordered map
unordered_map umap;
// Inserting elements into the map
umap.insert(make_pair(1,"Welcome"));
umap.insert(make_pair(2,"to"));
umap.insert(make_pair(3,"GeeksforGeeks"));
// Check if element with key 1 is present using
// count() function
if(umap.count(1))
{
cout<<"Element Found"<
输出:
Element Found
程序2 :
// C++ program to illustrate the
// unordered_map::count() function
#include
#include
using namespace std;
int main()
{
// unordered map
unordered_map umap;
// Inserting elements into the map
umap.insert(make_pair(1,"Welcome"));
umap.insert(make_pair(2,"to"));
umap.insert(make_pair(3,"GeeksforGeeks"));
// Try inserting element with
// duplicate keys
umap.insert(make_pair(3,"CS Portal"));
// Print the count of values with key 3
// to check if duplicate values are stored
// or not
cout<<"Count of elements in map, mapped with key 3: "
<
输出:
Count of elements in map, mapped with key 3: 1
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。