Ejemplo n.º 1
0
        //----------------------------------------------------------------------
        // Cunstructors
        //----------------------------------------------------------------------

        public BinaryTree()
        {
            root = null;
        }
Ejemplo n.º 2
0
 public void MakeEmpty()
 {
     root = null;
 }
        public void RemoveMin()
        {
            BinaryNode <T> t = root;

            root = RemoveMin(t);
        }