getMinNode(): BSTreeNode<T> | null {
        if (this.size === 0 || this.root === null) throw "Tree is empty";
        return _getMinNode(this.root);
    }