当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ map::size()用法及代码示例



Map是以映射方式存储元素的关联容器。每个元素都有一个键值和一个映射值。任何两个映射值都不能具有相同的键值。

map::size()
在C++中,size()函数用于返回映射中存在的元素总数。

用法:


map_name.size()

返回值:它返回Map中存在的元素数。

例子:

Input:map1 = { 
                {1, "India"},
                {2, "Nepal"},
                {3, "Sri Lanka"},
                {4, "Myanmar"}
               }
        map1.size();
Output:4

Input:map2 = {};
        map2.size();
Output:0

// C++ program to illustrate 
// implementation of size() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // Take any two maps 
    map<int, string> map1, map2; 
      
    // Inserting values 
    map1.insert(make_pair(1, "India")); 
    map1.insert(make_pair(2, "Nepal")); 
    map1.insert(make_pair(3, "Sri Lanka")); 
    map1.insert(make_pair(4, "Myanmar")); 
      
    // Printing the size 
    cout << "map1 size:" << map1.size(); 
    cout << endl; 
    cout << "map2 size:" << map2.size(); 
    return 0; 
}

输出:

map1 size:4
map2 size:0

时间复杂度:常数,即O(1)



相关用法


注:本文由纯净天空筛选整理自AKASH GUPTA 6大神的英文原创作品 map::size() in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。