“Рекурсия высоты дерева” Ответ

высота двоичного дерева

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

Рекурсия высоты дерева

	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

Ответы похожие на “Рекурсия высоты дерева”

Вопросы похожие на “Рекурсия высоты дерева”

Смотреть популярные ответы по языку

Смотреть другие языки программирования