Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

std map count vs find

In general, both count and find will use the container-specific lookup methods (tree traversal or hash table lookup), which are always fairly efficient. It's just that count has to continue iterating until the end of the equal-range, whereas find does not. Moreover, your code should document intent, so if you want to find something, use find.
 
PREVIOUS NEXT
Tagged: #std #map #count #find
ADD COMMENT
Topic
Name
5+8 =