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