Uses of Class
org.jheaps.tree.PairingHeap.Node
-
Packages that use PairingHeap.Node Package Description org.jheaps.tree Heaps using an explicit "pointer-based" tree representation -
-
Uses of PairingHeap.Node in org.jheaps.tree
Fields in org.jheaps.tree declared as PairingHeap.Node Modifier and Type Field Description (package private) PairingHeap.Node<K,V>
PairingHeap.Node. o_c
(package private) PairingHeap.Node<K,V>
PairingHeap.Node. o_s
private PairingHeap.Node<K,V>
PairingHeap. root
The root of the pairing heap(package private) PairingHeap.Node<K,V>
PairingHeap.Node. y_s
Methods in org.jheaps.tree that return PairingHeap.Node Modifier and Type Method Description private PairingHeap.Node<K,V>
PairingHeap. combine(PairingHeap.Node<K,V> l)
private PairingHeap.Node<K,V>
PairingHeap. cutChildren(PairingHeap.Node<K,V> n)
Cut the children of a node and return the list.private PairingHeap.Node<K,V>
PairingHeap. link(PairingHeap.Node<K,V> f, PairingHeap.Node<K,V> s)
private PairingHeap.Node<K,V>
PairingHeap. linkWithComparator(PairingHeap.Node<K,V> f, PairingHeap.Node<K,V> s)
Methods in org.jheaps.tree with parameters of type PairingHeap.Node Modifier and Type Method Description private PairingHeap.Node<K,V>
PairingHeap. combine(PairingHeap.Node<K,V> l)
private PairingHeap.Node<K,V>
PairingHeap. cutChildren(PairingHeap.Node<K,V> n)
Cut the children of a node and return the list.private void
PairingHeap. decreaseKey(PairingHeap.Node<K,V> n, K newKey)
Decrease the key of a node.private void
PairingHeap. delete(PairingHeap.Node<K,V> n)
private PairingHeap.Node<K,V>
PairingHeap. link(PairingHeap.Node<K,V> f, PairingHeap.Node<K,V> s)
private PairingHeap.Node<K,V>
PairingHeap. linkWithComparator(PairingHeap.Node<K,V> f, PairingHeap.Node<K,V> s)
-