CS 112 Lab 7
Linked Lists
Due Friday, March 28th 2008

For your sixth lab, you will implement a doubly-linked list.  Your list should have both a head and a tail pointer, and should contain dummy header and trailer elements, to avoid special cases for empty lists, and inserting and removing from the front/end of the list.  Your linked list should have the following methods (in addition to a constructor):

Your class should also contain a public static void main(String args[]) that thoughoughly tests all of your methods

Grading

Submission

All file(s) required for your project should be in the folder https://www.cs.usfca.edu/svn/<username>/cs112/Lab7/