method BinarySearchTree.prototype.removeNode
BinarySearchTree.prototype.removeNode(node: BinarySearchNode<T>): BinarySearchNode<T> | nullRemoves the given node, and returns the node that was physically removed from the tree.
Parameters
node: BinarySearchNode<T>Return Type
BinarySearchNode<T> | null