0 0 votes How many binary search trees can be formed with n distinct and designated(labeled) nodes...?? Data Structures data-structures binary-search-tree ace-test-series + – iita 592 views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
0 0 votes For n Nodes ; For making Binary Search Tree. We should follow a property of BST i.e. its InOrder Traversal should be always in Sorted Order. If we are having n keys ( being distinct ) then we can have only one Sorted Order. To achieve this Sorted Order we can arranged node in (2n C n/ (n+1) ) ways to get the Binary Trees with Labelled Nodes. So, we have ( 2n C n / ( n+1 ) ) BST . nitish answered Jun 7, 2017 nitish comment Share Follow 0 reply Please log in or register to add a comment.