Uses of Class
org.jgrapht.util.DoublyLinkedList
Package | Description |
---|---|
org.jgrapht.util |
Non-graph-specific data structures, algorithms, and utilities used by JGraphT.
|
-
Uses of DoublyLinkedList in org.jgrapht.util
Methods in org.jgrapht.util with parameters of type DoublyLinkedList Modifier and Type Method Description void
DoublyLinkedList. append(DoublyLinkedList<E> movedList)
Appends themovedList
to the end of this list.void
DoublyLinkedList. moveFrom(int index, DoublyLinkedList<E> movedList)
Moves allListNodes
of the givensourceList
to this list and inserts them all before the node previously at the given position.void
DoublyLinkedList. prepend(DoublyLinkedList<E> movedList)
Prepends themovedList
to the beginning of this list.