public void InsertarHijo(NodoB son)
        {
            for (int x = 0; x < Hijos.Count; x++)
            {
                if (this.CompareTo(son, x) > 0)
                {
                    Hijos.Insert(x, son);
                    return;
                }
            }

            Hijos.Add(son);
            son.Padre = this;
        }
Beispiel #2
0
 private void InsertarRecursivo(NodoB root, TKey nuevaLlave, T nuevoApuntador, object p)
 {
     throw new NotImplementedException();
 }
Beispiel #3
0
 private NodoB BusquedaInterna(NodoB root, TKey llave)
 {
     throw new NotImplementedException();
 }