Std Map Find Code Example


Example: c++ map find

// map::find #include <iostream> #include <map>  int main () {   std::map<char,int> mymap;   std::map<char,int>::iterator it;    mymap['a']=50;   mymap['b']=100;   mymap['c']=150;   mymap['d']=200;    it = mymap.find('b');   if (it != mymap.end())     mymap.erase (it);    // print content:   std::cout << "elements in mymap:" << '\n';   std::cout << "a => " << mymap.find('a')->second << '\n';   std::cout << "c => " << mymap.find('c')->second << '\n';   std::cout << "d => " << mymap.find('d')->second << '\n';    return 0; }

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable