stl mapでキーの有無を調べる

map<int, string> m;
...
if (m.count(n) == 0){
// ない
}else{
// ある
}