|
| class | BufferedQueue |
| | Typical LIFO generic queue container that stores data inside of a fixed-size internal buffer (array). More...
|
| |
| class | BufferedStack |
| | Typical FIFO generic stack container that stores data inside of a fixed-size internal buffer (array). More...
|
| |
| interface | IValueWithCost |
| | An interface that defines a class containing a cost associated with the instance. Used in PriorityQueue<T> More...
|
| |
| class | PriorityQueue |
| | Use a priority queue (heap) to determine which node is more important. More...
|
| |
| class | ProximityGrid |
| | A ProximityGrid<T> is a uniform 2d grid that can efficiently retrieve items near a specified grid cell. More...
|
| |