Britbot
template<T >
Britbot.PriorityQueue.HeapPriorityQueue< T >.HeapPriorityQueue ( int  maxNodes) [inline]

Instantiate a new Priority Queue.

Parameters:
maxNodesThe max nodes ever allowed to be enqueued (going over this will cause an exception)

Definition at line 26 of file HeapPriorityQueue.cs.

        {
            this.Count = 0;
            this._nodes = new T[maxNodes + 1];
            this._numNodesEverEnqueued = 0;
        }