Exemplo n.º 1
0
 public SortedHashSet()
 {
     binarySearchTree = new RedBlackTree <T>();
 }
Exemplo n.º 2
0
 public SortedDictionary()
 {
     binarySearchTree = new RedBlackTree <SortedDictionaryNode <K, V> >();
 }
Exemplo n.º 3
0
 public void Dispose()
 {
     bst        = null;
     enumerator = null;
 }
Exemplo n.º 4
0
 internal SortedDictionaryEnumerator(RedBlackTree <SortedDictionaryNode <K, V> > bst)
 {
     this.bst        = bst;
     this.enumerator = bst.GetEnumerator();
 }