“calculer la hauteur de l'arbre” Réponses codées

hauteur de l'arbre

int height(Node* root) {
        // Base Condition : if root is already null. then height must be -1 to make balance with recursion call...
        if(!root) return 0;
        
        // Actual Return statement.. for recursion call..
        return 1 + max(height(root->left), height(root->right));
    }
dK

Trouvez la hauteur d'un arbre

// finding height of a binary tree in c++.
int maxDepth(node* node)  
{  
    if (node == NULL)  
        return 0;  
    else
    {  
        /* compute the depth of each subtree */
        int lDepth = maxDepth(node->left);  
        int rDepth = maxDepth(node->right);  
      
        /* use the larger one */
        if (lDepth > rDepth)  
            return(lDepth + 1);  
        else return(rDepth + 1);  
    }  
}  
Enthusiastic Elephant

calculer la hauteur de l'arbre

recursive tree height
khairi abidi

Réponses similaires à “calculer la hauteur de l'arbre”

Questions similaires à “calculer la hauteur de l'arbre”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code