Package com.badlogic.gdx.utils
Class BinaryHeap.Node
- java.lang.Object
-
- com.badlogic.gdx.utils.BinaryHeap.Node
-
- Enclosing class:
- BinaryHeap<T extends BinaryHeap.Node>
public static class BinaryHeap.Node extends java.lang.ObjectA binary heap node.
-
-
Constructor Summary
Constructors Constructor Description Node(float value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description floatgetValue()java.lang.StringtoString()
-
-
-
Constructor Detail
-
Node
public Node(float value)
- Parameters:
value- The initial value for the node. To change the value, useBinaryHeap.add(Node, float)if the node is not in the heap, orBinaryHeap.setValue(Node, float)if the node is in the heap.
-
-