#include #include #include #include #include using namespace std; //myAlgo_equal1.cpp int main() { bool b1,b2,b3; //vector and vector iterator ostream_iterator< int > output( cout, " " ); int n1[] = { 69 ,60,63,61,65,64,71,70,68,64 }; int n2[] = { 69 ,60,63,61,65,64,71,70,68,64 }; int n3[] = { 69 ,60,63,61,65,64,71,71,68,64 }; vector< int > Vint1( n1, n1+10 ); vector< int > Vint2( n2, n2+10 ); vector< int > Vint3( n3, n3+10 ); cout << "\n----ostream_iterator output ----\n"; copy( Vint1.begin(), Vint1.end(), output ); cout << "\n"; copy( Vint2.begin(), Vint2.end(), output ); cout << "\n"; copy( Vint3.begin(), Vint3.end(), output ); // b1= equal( Vint1.begin(), Vint1.end(),Vint2.begin() ); if(b1){ cout<<"\n Vint1 equal Vint2 : " <