| | | | | |

Deque<>::Iterator Implementation Plan

  • Public Interface
    • Start with public interface of fsu::List<T>::Iterator
    • Add bracket operator
    • Add "pointer arithmetic"
  • Protected Data
    • Pointer to a specific Deque<T> object
      (the deque into which the iterator points)
    • A deque index value
      (the actual element to which the iterator points)

| | Top of Page | 4. Generic Positional Containers and Double Ended Queues - 5 of 10