|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.graphstream.algorithm.FibonacciHeap.Node
public class FibonacciHeap.Node
This class encapsulates pairs (key, value) in nodes stored in Fibonacci
heaps. Objects of this class cannot be instantiated directly. The only
way to obtain a node reference is the return value of
FibonacciHeap.add(Comparable, Object)
. Typically these references
are stored and then used in calls to
FibonacciHeap.decreaseKey(Node, Comparable)
.
Method Summary | |
---|---|
K |
getKey()
Returns the key stored in this node. |
V |
getValue()
Returns the value stored in this node. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public K getKey()
public V getValue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |