map::count()是C++ STL中的內置函數,如果在映射容器中存在帶有鍵K的元素,則該函數返回1。如果容器中不存在鍵為K的元素,則返回0。
用法:
map_name.count(key k)
參數:該函數接受強製性參數k,該參數指定要在Map容器中搜索的鍵。
返回值:該函數返回鍵K在Map容器中的出現次數。如果 key 存在於容器中,則返回1,因為映射僅包含唯一 key 。如果鍵在Map容器中不存在,則返回0。
以下示例程序旨在說明上述函數:
// C++ program to illustrate
// the map::count() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialize container
map<int, int> mp;
// insert elements in random order
mp.insert({ 2, 30 });
mp.insert({ 1, 40 });
mp.insert({ 3, 60 });
mp.insert({ 4, 20 });
mp.insert({ 5, 50 });
// checks if key 1 is present or not
if (mp.count(1))
cout << "The key 1 is present\n";
else
cout << "The key 1 is not present\n";
// checks if key 100 is present or not
if (mp.count(100))
cout << "The key 100 is present\n";
else
cout << "The key 100 is not present\n";
return 0;
}
輸出:
The key 1 is present The key 100 is not present
相關用法
- C++ set count()用法及代碼示例
- C++ multiset count()用法及代碼示例
- C++ unordered_set count()用法及代碼示例
- C++ unordered_multiset count()用法及代碼示例
- C++ unordered_multimap count()用法及代碼示例
- C++ std::count()用法及代碼示例
- C++ multimap::count()用法及代碼示例
- C++ bitset count()用法及代碼示例
- C++ unordered_map count()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 map count() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。