Britbot
Classes
Package Britbot.PriorityQueue

Classes

class  HeapPriorityQueue
 An implementation of a min-Priority Queue using a heap. Has O(1) .Contains()! See https://bitbucket.org/BlueRaja/high-speed-priority-queue-for-c/wiki/Getting%20Started for more information. More...
interface  IPriorityQueue
 The IPriorityQueue interface. This is mainly here for purists, and in case I decide to add more implementations later. For speed purposes, it is actually recommended that you *don't* access the priority queue through this interface, since the JIT can (theoretically?) optimize method calls from concrete-types slightly better. More...
class  PriorityQueueNode