Introduction to C++ Iterators

Iterator abstracts the concept of pointer to the sequence in range [begin, end), and thus provides the following basic operations: dereference to obtain the current element; movement to point the next element; comparison to determine … Continue reading Introduction to C++ Iterators