Uses of Class
squidpony.squidmath.BinaryHeap.Node
Package | Description |
---|---|
squidpony.squidai.graph |
Graphs and graph algorithms used primarily (but not exclusively) for pathfinding.
|
squidpony.squidmath |
A very broad package containing random number generators, geometry tools, data structures, and noise functions.
|
-
Uses of BinaryHeap.Node in squidpony.squidai.graph
Subclasses of BinaryHeap.Node in squidpony.squidai.graph Modifier and Type Class Description class
Node<V>
An extended version ofBinaryHeap.Node
that also stores a reference to the parent Graph, a vertex object of typeV
, a Map of neighbor Nodes to the appropriateConnection
per Node, an extra List of those same Connections for faster iteration, and a lot of internal data used by algorithms in this package. -
Uses of BinaryHeap.Node in squidpony.squidmath
Classes in squidpony.squidmath with type parameters of type BinaryHeap.Node Modifier and Type Class Description class
BinaryHeap<T extends BinaryHeap.Node>
A binary heap that stores nodes which each have a double value and are sorted either lowest first or highest first.