当前位置:   article > 正文

map的find函数和count函数_map find count

map find count

1.find函数

find()函数返回被查找元素的迭代器,通过该迭代器访问该元素。
如果找不到则返回尾指针,即map.end()

unordered_map<int,int>map = {{1,2},{3,4}};
    auto it = map.find(1);
    cout<<it->second<<endl;         //返回值为2
    auto IT = map.count(1);
    cout<<IT<<endl;                 //返回值为 1 即key=1的个数
    return 0;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2.count函数

返回被查找元素(key)的个数。

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号