//---------------------------------------------------------------------- // Cunstructors //---------------------------------------------------------------------- public BinaryTree() { root = null; }
public void MakeEmpty() { root = null; }
public void RemoveMin() { BinaryNode <T> t = root; root = RemoveMin(t); }