The maximum number of binary trees that can be formed with three unlabeled nodes is:

The maximum number of binary trees that can be formed with three unlabeled nodes is: Correct Answer 5

@SOLUTION;__✍️ BST(n) = C(2*n , n) / (n + 1) Therefore Unlabeled BT(n) = C(2*n , n) / (n + 1) Therefore the number of unlabeled BT with 3 nodes is given by:— = > C(2*3, 3) /(3 + 1) = > C(6,3)/4 = > 6!/(3!*3!*4) = > 6*5/6 = > 5 So the number of unlabeled Binary Tree with 3 nodes is 5.
Bissoy MCQ

Related Questions