This post is completed by 3 users

  • 1
Add to List
Beginner

Find the Maximum Depth OR Height of a Binary Tree

Objective: Given a binary tree, find the height of it

Input: A Binary Tree

Output: Height of a binary tree

Example:

Tree Height - Example

Approach:

       Recursion:

  1. Get the height of left sub tree, say leftHeight
  2. Get the height of right sub tree, say rightHeight
  3. Take the Max(leftHeight, rightHeight) and add 1 for the root and return
  4. Call recursively.

Time Complexity : O(n)

get Height of a tree - Recursion

Code:


Height of the Tree is 7



Also Read: