你要查找什么?调用什么查找函数?
标准算法里面有 find函数,返回值是迭代器,从网上搬个例子
// find example
#include// std::cout
#include// std::find
#include// std::vector
int main () {
// using std::find with array and pointer:
int myints[] = { 10, 20, 30, 40 };
int * p;
p = std::find (myints, myints+4, 30); //查找
if (p != myints+4) //根据返回值判断
std::cout << "Element found in myints: " << *p << '\n';
else
std::cout << "Element not found in myints\n";
// using std::find with vector and iterator:
std::vectormyvector (myints,myints+4);
std::vector::iterator it;
it = find (myvector.begin(), myvector.end(), 30); //查找
if (it != myvector.end()) //根据返回值判断
std::cout << "Element found in myvector: " << *it << '\n';
else
std::cout << "Element not found in myvector\n";
return 0;