Mutable ListsConcrete Mutable Collection ClassesLinked ListsDouble Linked ListsContents

Double Linked Lists

Double linked lists are like single linked lists, except that they have besides next another mutable field prev that points to the element preceding the current node. The main benefit of that additional link is that it makes element removal very fast. Double linked lists are supported by class DoubleLinkedList.

Next: Mutable Lists


Mutable ListsConcrete Mutable Collection ClassesLinked ListsDouble Linked ListsContents