CPSC220 Assignment 1
Ordered List
Due Before 8:40AM on Monday, September 13th

Details

Create a class that implements an ordered list using generics. You can use the file OrderedList.java as a template for your class. Your class must implement all of the methods as specified in the comments of the OrderedList.java file. You may use either a linked or an array implementation. If you use the array implementation, be sure that the array expands and contracts efficiently (i.e. not every time an element is added or removed). You should use JUnit to test and verify that your class works as specified.

As usual, use good programming techniques. You should use good variable names, whitespace, comments, and follow the Java coding conventions. Make your code easy to read and understand by keeping lines of code and methods simple and short.

Submission: Tar your code and copy it to the directory ~bouchard/CPSC220/assign1 on cs.roanoke.edu by 8:40AM on Monday, September 13th.