#include <iostream>
#include <cassert>
#include <deque>
#include <algorithm> // For find
using namespace std;
int main()
{
string x[5] = {"1234", "2345", "3456","4567", "5678"};
deque<string> deque1(&x[0], &x[5]);
// Search for the first occurrence of the letter e:
deque<string>::iterator i;
cout.precision(10);
for (i = deque1.begin(); i != deque1.end(); ++i)
cout << *i << endl;
return 0;
}
/*
1234
2345
3456
4567
5678
*/
|