copyright Steve J. Hodges   http://steveh.net/cs19/cs19-hw07.html

CS19 Fall 2007

Assignment 7 (Wumpus Maximus)

Directory Name

19-7

Resulting Executable

p7

Note: consider reusing your code from the previous assignment where appropriate. Consult the templatized linked list example as shown in class.

Description of the program

Define a class called DList that implements a doubly linked list using templates. You may assume that "T" will meet the general generic-class guidelines. (for example, it will be DefaultConstructible and LessThanComparable)

The DList class must support at a minimum, the following functions:

Include a main() function that thouroughly tests your data structure. I will possible replace your main() function with my own when I test your program.