double_linked_list library

Classes

DoubleLinkedList<E>
Generic double-linked list data structure
LinkedListException
Class that represents any error that can occur while using DoubleLinkedList
Node<T>
Represents the elements that make up the DoubleLinkedList. A Node can be either an end node, i.e. virtual nodes at the beginning and end of the DoubleLinkedList that don't contain any value, or an inner node, that do contain a value.