我只是在玩一些 STL 算法。在使用 binary_search 时,我被卡住了。我已经对向量字典进行了排序,然后我通过编写自己的比较器函数来运行 binary_search。但是,每次打印的输出都是“未找到”。但是,我搜索的字符串在向量中。任何帮助,将不胜感激。
这是片段:
bool ownComparator(const string &a, const string &b){
return lexicographical_compare(a.begin(),a.end(),b.begin(),b.end());
}
...
...
cout<<"Now using Binary Search to search in sorted array"<<endl;
string searchStr="will";
bool b = binary_search(dictionary.begin(),dictionary.end(),searchStr, ownComparator);
if(b) cout<<"Found";
else cout<<"Not Found";