我有一些vector<string> v1
,使用push_back填充:
v1.push_back("a");
v1.push_back("b");
v1.push_back("c");
v1.push_back("d");
v1.push_back("e");
我有另一个vector<string> v2
和一个迭代器,它包含一些元素
vector<string>::iterator v2iter;//some element of v2
我需要检查,v1中是否存在v2iter元素,或者不是
find(v1, v2iter); //smth like this
答案 0 :(得分:3)
您可以使用标准算法std::find
例如
#include <algorithm>
#include <vector>
//..
if ( std::find( v1.begin(), v1.end(), *v2iter ) != v1.end() )
{
std::cout << *v2iter << " is found in v1" << std::endl;
}
或者您可以使用标准算法std::any_of
例如
#include <algorithm>
#include <vector>
#include <functional>
//..
if ( std::any_of( v1.begin(), v1.end(), std::bind2nd( std::equal_to<std::string>(), *v2iter ) ) )
{
std::cout << *v2iter << " is found in v1" << std::endl;
}
或者,如果第一个向量是有序的,那么您可以使用算法std::binary_search
例如
#include <algorithm>
#include <vector>
//..
if ( std::binary_search( v1.begin(), v1.end(), *v2iter ) )
{
std::cout << *v2iter << " is found in v1" << std::endl;
}
答案 1 :(得分:1)
你可以使用:
找到它 vector <string > :: iterator it , fit ;
for ( it = v2.begin() ; it != v2.end() ; it++ ){
fit = find ( v1.begin() , v1.end() , *it ) ;
if ( fit != v1.end() ){
// means that the element is present in v1
}
}