A binary tree can be called a skewed binary tree if all nodes have one child or no child at all. They can be of two types:
Left Skewed Binary TreeRight Skewed Binary TreeLeft Skewed Binary Tree
If all nodes are having a left child or no child at all then it can be called a left skewed binary tree. In this tree all children at right side remain null.

Right Skewed Binary Tree
If all nodes are having a right child or no child at all then it can be called a right skewed binary tree. In this tre...
Published on March 26, 2021 09:18