next up previous
Next: 2.1.5 An Implementation Up: 2.1.4 Mutable Sequences Previous: 2.1.4.4 Spaghetti References (akin

  
2.1.4.5 The Iterator Pattern

Before we present a complete implementation of singly-linked imperative lists, we describe a new pattern which allows us to process lists similarly to arrays. The pattern is called the Iterator pattern, and consists of two interfaces, an abstract list, with methods for building and modifying lists

interface ListI {
  void insertFront(Object o);     
  void insertRear(Object o);      
  boolean isEmpty();              
  void remFront();          // remove the first element
}
and an abstract iterator, with methods for traversing a list and examining its contents
interface Iterator_I {
  void front();             // move to first element
  void next();                    
  boolean atEnd();          // test whether past the last element
  Object currentItem();     // contents of current element
}

The iterator's atEnd method returns true if and only if the iterator has moved past the last element of the list. When this is the case, the currentItem method will throw an exception.

With such a list and such an iterator we could easily implement a queue, since we can remove from the front and add at the back.

It would be nice if the list were more flexible however. For example, we may wish to sort a list. We can already do this in a functional style, by building a new list while using insertion sort, but since this is a mutable list we should ideally be able to sort the list without copying the nodes, changing it from an unsorted list into a sorted one. We can implement such a sort if we add two more methods to the Iterator_I implementation:

  void insertBefore(Object o); // add new element before current
  void remove();               // remove current

A given list may have more that one iterator active on it at one time, so the remove and insertBefore methods must be used with some care.

If an iterator must be able to remove the current element, then it must keep track of the element immediately before the current element. It will access the current element indirectly through the previous element.

\includegraphics{gif/iterator1.ps}

If we use a dummy node which is always at the head of the list, this will work even in the boundary case where we delete the last element of the list.

When the list is empty, both head and last will point to the empty dummy node.


next up previous
Next: 2.1.5 An Implementation Up: 2.1.4 Mutable Sequences Previous: 2.1.4.4 Spaghetti References (akin
Corky Cartwright
2000-01-07