Go to the source code of this file.
Classes | |
class | Array_t< T > |
Template dynamic sized circular array of T. More... | |
class | List_t< T > |
Template list class, implemented as a circular array of pointers to T. More... | |
class | OwnedList_t< T > |
Template list class which, when deleted, deletes all the items in the list as well. More... | |
class | LinkedList_t< T > |
Template linked list class. The template type T must inherit from LinkedListNode_t < class T >. More... | |
class | LinkedListNode_t< T > |
Template linked list element base class. More... | |
class | OwnedLinkedList_t< T > |
Template linked list class which, when deleted, deletes all the items in the list as well. More... | |
class | BTree_t< T, K > |
Template binary tree class. More... | |
class | BTreeNode_t< T, K > |
Template binary tree element base class. More... | |
class | OwnedBTree_t< T, K > |
Template binary tree class which, when deleted, deletes all the items in the tree as well. More... | |
class | SortedList_t< T, K > |
Template sorted list class, implemented as an array of sorted pointers to T. More... | |
class | OwnedSortedList_t< T, K > |
Template sorted list class which, when deleted, deletes all the items in the list as well. More... |