Leetcode 110: Balanced Binary Tree

What is a Binary Tree?

A Binary Tree is a data structure where:

  • Each node contains a value.

  • Each node can have at most two children:

    • Left child

    • Right child.

  • Binary trees are widely used in Data Structures for searching, sorting, and hierarchical data representation.
balanced binary tree
Dare To Dream