Uses of Class
org.jgrapht.util.DoublyLinkedList
-
Packages that use 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 that return DoublyLinkedList Modifier and Type Method Description DoublyLinkedList<V>DoublyLinkedList.ListNode. getList()Returns the list that this node is a member of.DoublyLinkedList<E>DoublyLinkedList. reversed()Returns a reverse-ordered view of thisDoublyLinkedList.Methods in org.jgrapht.util with parameters of type DoublyLinkedList Modifier and Type Method Description voidDoublyLinkedList. append(DoublyLinkedList<E> movedList)Appends themovedListto the end of this list.voidDoublyLinkedList. moveFrom(int index, DoublyLinkedList<E> movedList)Moves allListNodesof the givensourceListto this list and inserts them all before the node previously at the given position.voidDoublyLinkedList. prepend(DoublyLinkedList<E> movedList)Prepends themovedListto the beginning of this list.
-