#include <iostream>
#include <list>
using std::list;
using std::cout;
using std::endl;
int main()
{
list<int> lst{ 1, 3, 8, 23, 88, 12, 99, 7 };
list<int>::iterator pos;
pos = find(lst.begin(), lst.end(), 88);
if (pos != lst.end()) {
cout << "found" << endl;
}
else {
cout << "not found" << endl;
}
}
/*
run:
found
*/