6. Diameter of Binary Tree

Given a binary tree, you need to compute the length of the diameter of the tree.

. The diameter of a binary tree is the length of the longest path between any two nodes in a tree.

Different Conditions of finding diameter

Solution: (Using Depth and Storing the possible diameter)

Time Complexity: O(n)

Last updated

Was this helpful?