Objectives
- Modify a templated linked list from singly-linked to doubly-linked
- Compile a program that requires several source files.
- Test and debug complex code
You have to finish the implementation of a linked list class. It currently is a singly linked list, but you must convert it into a doubly-linked list. When you get done, you should be able to pass all the tests in the test code, walk around in the dungeon, and possibly escape to the outside if you make the correct decisions in the dungeon. You have several files that you must work with. Make sure you add documentation to the documentation comments at the beginning of the file you have to modify: LinkedList.h.