Using find with normal iteration : find « STL Algorithms Non modifying sequence operations « C++






Using find with normal iteration

  
 

#include <iostream>
#include <vector>
#include <algorithm> // for find
#include <iterator>
using namespace std;


int main()
{
  string s("It is him.");

  vector<char> vector1(s.begin(), s.end());
  ostream_iterator<char> out(cout, " ");

  vector<char>::iterator i = find(vector1.begin(), vector1.end(), 'i');
  cout << "chars from the first i to the end: ";
  copy(i, vector1.end(), out); cout << endl;

  return 0;
}

/* 
chars from the first i to the end: i s   h i m .

 */        
    
  








Related examples in the same category

1.Use find to search an element in a container
2.find an element in a list
3.Find the maximum element in a range in a list
4.Locate first occurrence of a value in a vector
5.Demonstrating generic find algorithm with an array
6.Generic find algorithm: use find function to find an element in an array
7.Use find algorithm to find an element in a list
8.Use istream_iterator and find
9.Generic find algorithm with input iterators associated with io streams
10.Use assert to check the find method
11.find and display v in lowest 20th percentile
12.find and display v in highest 20th percentile
13.find and display sorted v in lowest 20th percentile
14.find and display sorted v in highest 20th percentile