vote up 2 vote down star
1

Is there any explanation why find() algorithm doesn't work for maps and one have to use map::find instead?

flag

4 Answers

vote up 16 vote down check
  1. It does work on maps, but you need to compare against a map::value_type (which is std::pair<const map::key_type, map::mapped_type>), not the key type.
  2. Because map.find takes a key and returns a key/value pair iterator.
link|flag
1  
Just to clarify, map's value_type_ is `pair<key_type, mapped_type>. – Pavel Minaev Jul 22 at 21:31
2  
According to the standard section 23.3.1, for a std::map<Key, T, Compare, Allocator>, key_type is Key, but value_type is pair<const Key, T>. The reason is that once the value has been inserted the key of insertion must be immutable, or else the order invariant could be broken – dribeas Jul 22 at 22:26
vote up 4 vote down

As noted elsewhere, it does work, but the type is the key/value pair, so you need to supply a functor/function to do the comparison. (You could probably do it with a custom operator==() overload too, though I've never tried such a thing)

However you probably do want to use the map member function find() anyway since it will give the O(logN) lookup, the algorithm std::find() is O(N).

Additional: I think you could also use std::equal_range/lower_bound/upper_bound() with a map ok, these are also O(LogN).

link|flag
A custom operator== is neither allowed nor necessary. Use find_if innstead. – MSalters Jul 23 at 10:39
You're quite right. – Andy J Buchanan Jul 30 at 21:47
vote up 1 vote down

Do you mean equal_range? With a map, you should use the member functions lower_bound, upper_bound and equal_range. The std equivalents may provide logarithm number of comparisons, but they require linear time to walk over the elements of a container.

link|flag
Are you sure about the linear walk? I thought that you'd get a log walk just fine, if you have random access iterators. – Andy J Buchanan Jul 22 at 22:38
if you have random access iterators, yes, but if not, you'll have to do linear number of steps. std::map does not provide random access iterators. – navigator Jul 22 at 22:41
Yep, you quite right on that point, forgot map's iterators are only bidirectional. – Andy J Buchanan Jul 22 at 23:52
vote up 1 vote down

You should read "Effective STL" by Scott Meyers for more info on subjects like these.

"Item 43: Prefer member functions to algorithms with the same name"

For why the member function exists and why you should use it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.