× Home

What is a Binary Tree

Quick revision

Additional points

Binary Tree

A binary tree is a special type of tree where each node has a degree equal to or less than two which means each node should have at most two children

Example 1 has nodes A, B, C, D, E with degrees (2, 0, 1, 1, 0) respectively which satisfies the conditions for a binary tree. Similarly, example 2 has nodes A and B, having degrees 1 each, hence a binary tree.