c++ 中map 的find 用法

   

   用find函数来定位数据出现位置,它返回的一个迭代器,当数据出现时,它返回数据所在位置的迭代器,如果map中没有要查找的数据,它返回的迭代器等于end函数返回的迭代器,

程序演示

#include 
#include 
#include 

Using namespace std;

Int main()

{

       Map mapStudent;

       mapStudent.insert(pair(1, “student_one”));

       mapStudent.insert(pair(2, “student_two”));

       mapStudent.insert(pair(3, “student_three”));

       map::iterator iter;

       iter = mapStudent.find(1);

if(iter != mapStudent.end())

{

       Cout<<”Find, the value is ”<second<

百度云盘:链接:https://pan.baidu.com/s/11b634VvKMIsGdahyBLpZ3Q    提取码:6666 

你可能感兴趣的:(C++,蓝桥杯,p2p,c++)