我有一个结构:
struct node
{
string val;
int count;
};
我已经定义了这样我的矢量:
typedef std::vector<node> StringVector;
typedef std::vector<StringVector> StringVector2D;
这里是我的代码:
string arr[6] = {"hi","mr","ben","ss","rty","ben"};
StringVector2D twoD;
StringVector inner;
twoD.push_back(inner);
for(int f=0;f<6;f++)
{
node tmp;
tmp.val = arr[f];
tmp.count = arr[f].size();
twoD[0].push_back(tmp);
}
for (StringVector::iterator it = twoD[0].begin() ; it != twoD[0].end(); ++it)
{
cout<< it->val<<endl;
}
...在这个例子中,我有我的外向量只有一个维度,从而你可以看到它是: twoD[0]
StringVector::iterator it = find(twoD[0].begin(), twoD[0].end(), "ben");
if(it == twoD[0].end())
{
cout<<"not found"<<endl;
}
我用这个
StringVector::iterator it = find(twoD[0].begin().val, twoD[0].end().val, "ben");
和
StringVector::iterator it = find(twoD[0].begin()->val, twoD[0].end()->val, "ben");
但它没有工作。 欣赏任何建议。
编辑
我定义我自己的搜索:
struct find_word
{
string val;
find_word(string val) : val(val) {}
bool operator () ( const find_word& m ) const
{
return m.val == val;
}
};
在这里,称之为:
StringVector::iterator it = find_if(twoD[0].begin()->val, twoD[0].end()->val, find_word("ben"));
但不能使它工作。