How to update the value of a key in std::map
after using the find
method?
I have a map and iterator declaration like this:
map <char, int> m1;
map <char, int>::iterator m1_it;
typedef pair <char, int> count_pair;
I'm using the map to store the number of occurrences of a character.
I'm using Visual C++ 2010.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…