// alg_find.cpp // compile with: /EHsc #include #include #include int main() { using namespace std; list L; list::iterator Iter; list::iterator result; L.push_back(40); L.push_back(20); L.push_back(10); L.push_back(30); L.push_back(10); cout << "L = ( " ; for (Iter=L.begin(); Iter!=L.end(); Iter++) // Iter