當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ map count()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 map count() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。