Demonstrating the generic find algorithm with a vector : vector find « vector « C++ Tutorial






#include <iostream>
#include <cassert>
#include <vector>
#include <algorithm>  // For find
using namespace std;


int main()
{
  char x[5] = {'a', 'b', 'c', 'd', 'f'};

  vector<char> vector1(&x[0], &x[5]);

  // Search for the first occurrence
  vector<char>::iterator where = find(vector1.begin(), vector1.end(), 'b');


  cout << *where  << endl;
  return 0;
}
b








16.14.vector find
16.14.1.Locate maximum element in a vector
16.14.2.Locate minimum element in a vector
16.14.3.find the smallest number
16.14.4.Find a sample integer '3' in the vector using the 'find' algorithm
16.14.5.Find the first even number in the collection
16.14.6.Demonstrating the generic find algorithm with a vector