Mega Code Archive

 
Categories / C++ Tutorial / List
 

End() is the pointer to the end of a list

#include <iostream> #include <list> using namespace std;     int main() {   list<int> lst;   int i;       for(i=0; i<10; i++) lst.push_back(i);       cout << "List printed forwards:\n";   list<int>::iterator p = lst.begin();   while(p != lst.end()) {     cout << *p << endl;     p++;   }       cout << "List printed backwards:\n";   p = lst.end();   while(p != lst.begin()) {     p--;     cout << *p << " ";   }       return 0; }