×

Search anything:

Properties of a Binary Tree

Binary Tree book by OpenGenus

Open-Source Internship opportunity by OpenGenus for programmers. Apply now.

Reading time: 10 minutes | Coding time: 5 minutes

Binary Tree is a unique data structure which has some wonderful properties that finds use in helpful ways.

Few of the properties of Binary Tree are as follows:

  1. The maximum number of nodes at level ‘L’ of a binary tree is 2L-1

Level is number of nodes on path from root to the node (including root and node). Level of root is 1.
This can be proved by induction.
For root, L = 1, number of nodes = 2(1)-1 = 1
Assume that maximum number of nodes on level L is 2L-1
Since in Binary tree every node has at most 2 children, next level would have twice nodes, i.e. 2 * 2L-1

  1. Maximum number of nodes in a binary tree of height ‘H’ is 2H – 1

Height of a tree is maximum number of nodes on root to leaf path. Height of a tree with single node is considered as 1.

This result can be derived from point 2 above. A tree has maximum nodes if all levels have maximum nodes. So maximum number of nodes in a binary tree of height h is 1 + 2 + 4 + .. + 2h-1. This is a simple geometric series with h terms and sum of this series is 2h – 1.

In another convention, height of a leaf is considered as 0. In this convention, the above formula becomes 2h+1 – 1

  1. In a Binary Tree with N nodes, minimum possible height or minimum number of levels is ⌈ Log2(N+1) ⌉

This can be directly derived from point 2 above. If we consider the convention where height of a leaf node is considered as 0, then above formula for minimum possible height becomes ⌈ Log2(N+1) ⌉ – 1

  1. A Binary Tree with L leaves has at least ⌈ Log2L ⌉ + 1 levels

A Binary tree has maximum number of leaves (and minimum number of levels) when all levels are fully filled. Let all leaves be at level l, then below is true for number of leaves L.

L <= 2l-1 (From Point 1)
l = ⌈ Log2L ⌉ + 1 where l is the minimum number of levels.

  1. In Binary tree where every node has 0 or 2 children, number of leaf nodes is always one more than nodes with two children

L = T + 1
Where L = Number of leaf nodes
T = Number of internal nodes with two children

OpenGenus Tech Review Team

OpenGenus Tech Review Team

The official account of OpenGenus's Technical Review Team. This team review all technical articles and incorporates peer feedback. The team consist of experts in the leading domains of Computing.

Read More

Improved & Reviewed by:


Properties of a Binary Tree
Share this