public DuplicableSimpleBSTree(TKey rootKey, TValue rootValue) { Root = new BSTNode <TKey, TValue>(rootKey, rootValue); }
public DuplicableSimpleBSTree(BSTNode <TKey, TValue> root) { this.Root = root; }