“Rekurencja wysokości drzewa” Kod odpowiedzi

Wysokość drzewa binarnego

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

Rekurencja wysokości drzewa

	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

Odpowiedzi podobne do “Rekurencja wysokości drzewa”

Pytania podobne do “Rekurencja wysokości drzewa”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu