i*****s 发帖数: 438 | 1 why does set has a find()member function (rather than using the find()
algorithm)? Thanks. | t****t 发帖数: 6806 | 2 because std::set::find is more specialized than std::find, and is much
faster.
【在 i*****s 的大作中提到】 : why does set has a find()member function (rather than using the find() : algorithm)? Thanks.
| i*****s 发帖数: 438 | 3
I see, thanks.
【在 t****t 的大作中提到】 : because std::set::find is more specialized than std::find, and is much : faster.
|
|