My implementation of doubley-linked lists in C++
This library is best used when you need a dynamicly sized list, and staticly sized arrays are not an option. So don't go too crazy with this code. It's always best to try and find a work-around solution before relying on linked-lists to bail you out.
Include LinkedList.cpp in cpp file:
#include "LinkedList.cpp"
Instantiate a new List object:
List<TYPE> myList = List<TYPE>();
TYPE specifies the type of data to be stored in the list.