C++: STL: Iterators for vector - Fred Swartz - Home
C++: STL: Iterators for vector An iterator is used to move thru the elements an STL container (vector, list, set, map, ...) in a similar way to array indexes or pointers. The * operator dereferences an iterator (ie, is used to access the element an iterat...