“Baumhöhe Rekursion” Code-Antworten

Höhe eines binären Baums

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

Baumhöhe Rekursion

	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

Ähnliche Antworten wie “Baumhöhe Rekursion”

Fragen ähnlich wie “Baumhöhe Rekursion”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen