“Recursión de altura del árbol” Código de respuesta

altura de un árbol binario

int height(Node* root)
{
    // Base case: empty tree has height 0
    if (root == nullptr)
        return 0;
 
    // recur for left and right subtree and consider maximum depth
    return 1 + max(height(root->left), height(root->right));
}
Elegant Elk

Recursión de altura del árbol

	public static int height(Node root) {
      	// Write your code here.
        
          if(root == null) 
            return -1;
        
         return 1 + Math.max(height(root.left), height(root.right));
         
    }
Dr. iterations

Respuestas similares a “Recursión de altura del árbol”

Preguntas similares a “Recursión de altura del árbol”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código