How to find whether an element exists in std::map?

C++

C++ Problem Overview


My use case:

map<string, Car> cars;
bool exists(const string& name) {
  // somehow I should find whether my MAP has a car
  // with the name provided
  return false;
} 

Could you please suggest the best and the most elegant way to do it in C++? Thanks.

C++ Solutions


Solution 1 - C++

return cars.find(name) != cars.end();

Solution 2 - C++

Sure, use an iterator

map<string,Car>::const_iterator it = cars.find(name);
return it!=cars.end();

Solution 3 - C++

You could also use

bool exists(const string& name) {
  return cars.count(name) != 0;
} 

Solution 4 - C++

Apart from the answers with iterator-Value from find() and comparison to .end(), there is another way: map::count.

You can call map::count(key) with a specific key; it will return how many entries exist for the given key. For maps with unique keys, the result will be either 0 or 1. Since multimap exists as well with the same interface, better compare with != 0 for existence to be on the safe side.

for your example, that's

return (cars.count(name)>0);

The advantages I see are

  1. shorter code,
  2. benefit from whatever optimisations the library may apply internally, using its representation details.

Solution 5 - C++

What about:

template <typename KeyType, typename Collection>
bool exists_in(Collection const& haystack, KeyType const& needle) {
    return std::find(haystack.begin(), haystack.end(), needle) != haystack.end();
}

template <typename K, typename V>
bool exists_in(std::map<K,V> const& haystack, K const& needle) {
    return haystack.find(needle) != haystack.end();
}

This makes exists_in work with any standard container via std::find and use a special version for std::map since it offers a more efficient searching alternative. You could add additional specializations as necessary (e.g., for std::set and others).

Solution 6 - C++

bool exists(const string& name)
{
    return cars.find(name) != cars.end();
}

Solution 7 - C++

C++20:

return cars.contains(name);

Solution 8 - C++

std::map::find(const key_type& x );

It returns map::end if the item doesn't exist.

Solution 9 - C++

bool exists(const std::map<std::string, Car>& cars, const std::string& name) {
  return cars.end() != cars.find(name);
}

Solution 10 - C++

#define itertype(v) typeof((v).begin())
itertype(cars) it = cars.find(name);
return it != cars.end();

Solution 11 - C++

This does not answer the question but it might be good to know. You can know if it exists by erasing it.

bool existed = cars.erase( name );

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionyegor256View Question on Stackoverflow
Solution 1 - C++kennytmView Answer on Stackoverflow
Solution 2 - C++TomView Answer on Stackoverflow
Solution 3 - C++Johannes Schaub - litbView Answer on Stackoverflow
Solution 4 - C++fooView Answer on Stackoverflow
Solution 5 - C++D.ShawleyView Answer on Stackoverflow
Solution 6 - C++Mike SeymourView Answer on Stackoverflow
Solution 7 - C++user3624760View Answer on Stackoverflow
Solution 8 - C++Brian RoachView Answer on Stackoverflow
Solution 9 - C++RudiView Answer on Stackoverflow
Solution 10 - C++Dr.VendettaView Answer on Stackoverflow
Solution 11 - C++Tono NamView Answer on Stackoverflow