Binary tree remove functionand min() [code]int BinaryTree::min() //public { return min(root); } int BinaryTree::min(Node...
Binary tree remove functionThis is what I came up with. [code] void BinaryTree::remove(int item) //public { remove(root,...
ordering algorithm:-)