They will have about equal performance. You should use the algorithm that best expresses what you are trying to do.
To elaborate on that, generally count()
will be implemented using find()
. For example, in libcxx, count()
is implemented as return (find(__k) != end());