Self-explanatory see the example
- list
- map
- vector -> equivalent tableau
list<int> lst;
list<int>::const_iterator iter;
list<int>::const_iterator itend = lst.end();
for (iter = lst.begin(); iter != itened; iter++)
{
cout << *it << endl; // Deferencement possible
}
"Pointeurs pour les containers"
Plus d'informations dans le projet : Ft_containers
#include <algorithm>
for_each(lst.begin(),lst.end(), display) // (iter, itend, fcn)