![]() |
School of Engineering and Applied
Science
Department of Computer Science CSci 133 -- Algorithms and Data Structures I http://www.seas.gwu.edu/~csci133/spring03 Prof. Michael B. Feldman mfeldman@gwu.edu |
The objective in this project is to develop an ordered linked-list collection class. Each collection will be an alphabetically-sorted list of strings. It is an error to attempt to add two identical strings to the same list; however, the same string can be inserted into several lists. The class will provide these public methods:
See the article Insertion and Deletion with Ordered Linked Lists for details on the insertion and deletion algorithms.
Test your class with a test program that creates and manipulates at least three list objects.