map in c++ to find the string is presnet code example
Example: check if key exists in map c++
if ( m.find("f") == m.end() ) {
// not found
} else {
// found
}
if ( m.find("f") == m.end() ) {
// not found
} else {
// found
}