ListNode
LinkedList.h
ListNodeA node of a linked listDescription
ListNode should be a parent class for any derived class which need to incorporatethe functionality of a linked list. To incorporate a linked list into a class, the class should first inherit from ListNode using the format class SomeDataClass : public ListNode<SomeDataClass>. The class may then beinstanced using the LinkedList template like so: LinkedList<SomeDataClass> MyListOfData;Definition
template <typename ELEMENT> class ListNode : public ListNodeBaseBase Classes
Contructor
ListNode();Member Functions
Operators
See Also
LinkedList |