edited by
732 views
0 votes
0 votes

Q). Find the number of trees that are possible .If we construct a binary search tree by successively inserting $5$ distinct items int an initially empty tree.

a). $4$

b). $10$

c). $14$

d). $20$

I used the formula 2n!/(n+1)!*n!. Is it right ? also the ans given is 14,but I am getting 7.

edited by

1 Answer

3 votes
3 votes
no of BST=2nCn/n+1

               =10C5/6

               =42

Related questions

0 votes
0 votes
1 answer
3