School of Engineering and Applied Science
Department of Computer Science
CSci 133 -- Algorithms and Data Structures I
http://www.seas.gwu.edu/~csci133/spring06
Prof. Michael B. Feldman
mfeldman@gwu.edu

Lab Exercise #3
for lab meeting Friday, Feb. 10. 2006

In this lab you will implement a few common operations on linear lists.

The book's LinearNode class provides some basic methods on individual linear nodes. The book also includes LinkedIterator, which provides the usual iterator methods. Your task here is to develop and test a class LinearList, which imports LinearNode and LinkedIterator, and has the following characteristics:
This is easiest to do incrementally. First implement the constructor, toString, and addToFront methods, and test these. Then add more methods one or more at a time.


(end of lab)