linkedlist.h

This file exports the LinkedList class, which is an implementation of a linked list structure that provides a similar set of operations to the Vector class, but with a linked list as its internal representation. This means that the linked list is more efficient for certain operations, such as repeatedly adding/removing at the front of the list, while it is slower for other operations, such as retrieving/modifying arbitrary indexes in the middle of the list.
Class
LinkedList<ValueType> This class stores an ordered list of values similar to an array or Vector.