Be the first user to complete this post

  • 0
Add to List
Beginner

138. Find the Max element in a Given Binary Tree

Objective: – Given a binary tree , Find the max element in it.

Example:

Find the Max element in a Given Binary Tree

Approach:

  • Use Recursion.
  • Max will the Max(root, max element in the left subtree, max element in right subtree)
  • Recursively solve for the max element in the left subtree and right subtree.

Complete Code:


Output:

Max element in Binary Tree: 35