School of Engineering and Applied Science
Department of Computer Science
CSci 133 -- Introduction to Software Development
http://www.seas.gwu.edu/~csci133/spring04
Prof. Michael B. Feldman
mfeldman@gwu.edu

Lab Exercise #6
for labs meeting Friday, Feb. 27, 2004

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

In class, we examined the book's LinearNode class, which 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)