Mega Code Archive

 
Categories / C++ / Vector
 

Find the first subsequence of two consecutive 8s

#include <algorithm> #include <iostream> #include <vector> using namespace std; int main(int argc, char** argv) {   int elems[] = {5, 6, 9, 8, 8, 3};   vector<int> myVector(elems, elems + 6);    vector<int>::const_iterator it, it2;     it = search_n(myVector.begin(), myVector.end(), 2, 8);   if (it != myVector.end()) {     cout << "Found two consecutive 8s starting at position "    << it - myVector.begin() << endl;   }   return (0); }