判断std::vector里是否存在指定的元素?
可以使用<algorithm>的std::find来搜索vector
#include <algorithm>
if ( std::find(vector.begin(), vector.end(), item) != vector.end() )
do_this();
else
do_that();</algorithm>
可以使用<algorithm>的std::find来搜索vector
#include <algorithm>
if ( std::find(vector.begin(), vector.end(), item) != vector.end() )
do_this();
else
do_that();</algorithm>