首页 > 代码库 > c++ vector怎么查找某个元素是否存在

c++ vector怎么查找某个元素是否存在

http://blog.csdn.net/pipisorry/article/details/39231949

自己编写一个find查找函数:

static bool find(vector<int> bn_vec, int an){
	for(vector<int>::iterator bn_vec_it = bn_vec.begin(); bn_vec_it != bn_vec.end(); bn_vec_it++){
		if( *bn_vec_it == an )
			return true;
	}
	return false;
}

vector<int> bn_vec;
bn_vec.push_back(2);
//...
int an = 1;

while( find(bn_vec, ++an) );


from:http://blog.csdn.net/pipisorry/article/details/39231949


c++ vector怎么查找某个元素是否存在