c++调用查找函数根据函数的返回值判断查找结果

2025-04-06 03:33:23
推荐回答(1个)
回答1:

你要查找什么?调用什么查找函数?

标准算法里面有 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::vector myvector (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;