public GenericBinaryTreeCollection(bool sorted) { this.thisGenericTree = new GenericTreeTable <V>(sorted) { Tag = this }; }
protected virtual void Dispose(bool isDisposing) { if (isDisposing) { this.thisGenericTree.Dispose(); this.thisGenericTree = null; } }
public GenericBinaryTreeCollection(GenericTreeTable <V> genericTree) { this.thisGenericTree = genericTree; this.thisGenericTree.Tag = this; }
public GenericTreeTableEntry(GenericTreeTable <V> tree, V value) { thisValue = value; Tree = tree.InternalTree; }