/* ------- LIST EXAMPLE BEGIN ---------- */ #include <iostream> #include <list> using namespace std; void display(list<string> *strList) { ....list<string>::iterator sIter; ....sIter = strList->begin(); ....while( sIter != strList->end() ) ....{ ........cout << "[" << *sIter << "] => "; ........*sIter++; ....} ....cout <<..