Пример #1
0
 /// <summary>
 /// Returns the value associated with the given key.
 /// </summary>
 public ST()
 {
     _st = new RedBlackBST <TKey, TValue>();
 }
Пример #2
0
 /// <summary>
 /// Initializes an empty set.
 /// </summary>
 public SET()
 {
     _set = new RedBlackBST <TKey, string>();
 }