| | | | | |

List Iterator Implementation Plan

  • Protected data
    • pointer to current link
    template <typename T>
    class listiterator
    {
      protected:
        link * currLink;
    
      public:
        listiterator& operator ++();
    } ;
    
list image

| | Top of Page | 8. A Generic List Class and Linked Lists - 13 of 19