Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,924 questions

51,857 answers

573 users

How to remove element from a map by key in C++

1 Answer

0 votes
#include <iostream>
#include <string>
#include <map>

void printMap(std::map<char, int> mp) {
  for (auto &s: mp) {
        std::cout << s.first << ": " << s.second << '\n';
  }    
}
  
int main ()
{
    std::map<char, int> mp;
  
    mp['a'] = 1;
    mp['x'] = 7;
    mp['r'] = 9;
    mp['w'] = 5;
  
    printMap(mp);
    
    mp.erase('x');   
    
    std::cout << '\n';
    printMap(mp);
     
    return 0;
}
  
  
  
/*
run:
  
a: 1
r: 9
w: 5
x: 7

a: 1
r: 9
w: 5
  
*/

 



answered Apr 13, 2020 by avibootz

Related questions

1 answer 193 views
193 views asked Jan 10, 2018 by avibootz
1 answer 155 views
155 views asked May 5, 2018 by avibootz
1 answer 213 views
1 answer 146 views
1 answer 143 views
1 answer 152 views
...