Пример #1
0
            public PriorityBTSEnumerator(PriorityBST <N, K> tree)
            {
                this._tree = tree;

                this._traverseQueue = new Queue <PriorityBSTNode>();
                this.VisitNode(this._tree._root);
            }
Пример #2
0
 public void Dispose()
 {
     this._current = null;
     this._tree    = null;
 }