Ignoring the arrow directions, assume that you don't know the exact root node of the Binary tree given above.
What is the number of all the possible Binary trees that it can be?
Clarifications:
You can not add or remove any link between any pair of nodes.
Arrows in the tree above indicates parent to child connection but ignore the arrows and take them only as a connection.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
A root node cannot have 3 connections in Binary Tree. So, for each node, assume that node to be root and check if it has 2 or less children. Only 7 of the nodes satisfy.