Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Given n nodes. Find the number of different structural
binary trees that can be formed using the nodes.

Answers were Sorted based on User's Feedback



Given n nodes. Find the number of different structural binary trees that can be formed using the no..

Answer / biplab sinha

2nChoosen/(n+1)

Is This Answer Correct ?    3 Yes 20 No

Given n nodes. Find the number of different structural binary trees that can be formed using the no..

Answer / a.s.

it's &#937;((4^n)/(n^(3/2)))

Is This Answer Correct ?    1 Yes 20 No

Given n nodes. Find the number of different structural binary trees that can be formed using the no..

Answer / ss

it is 2^n-n trees.

Is This Answer Correct ?    26 Yes 54 No

Given n nodes. Find the number of different structural binary trees that can be formed using the no..

Answer / maverick

answer: 2^n-2

Is This Answer Correct ?    3 Yes 47 No

Given n nodes. Find the number of different structural binary trees that can be formed using the no..

Answer / v.suresh kumar

It is possible to form 2^n - 1 binary trees with n nodes.

Is This Answer Correct ?    21 Yes 69 No

Given n nodes. Find the number of different structural binary trees that can be formed using the no..

Answer / rk

2^n-1

Is This Answer Correct ?    34 Yes 91 No

Post New Answer

More C Code Interview Questions

main() { signed int bit=512, i=5; for(;i;i--) { printf("%d\n", bit = (bit >> (i - (i -1)))); } } a. 512, 256, 128, 64, 32 b. 256, 128, 64, 32, 16 c. 128, 64, 32, 16, 8 d. 64, 32, 16, 8, 4

2 Answers   HCL,


find A^B using Recursive function

2 Answers  


How can u say that a given point is in a triangle? 1. with the co-ordinates of the 3 vertices specified. 2. with only the co-ordinates of the top vertex given.

1 Answers  


Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?

0 Answers   Honeywell,


String copy logic in one line.

11 Answers   Microsoft, NetApp,


char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }

1 Answers  


main( ) { char *q; int j; for (j=0; j<3; j++) scanf(“%s” ,(q+j)); for (j=0; j<3; j++) printf(“%c” ,*(q+j)); for (j=0; j<3; j++) printf(“%s” ,(q+j)); }

1 Answers  


Implement a t9 mobile dictionary. (Give code with explanation )

1 Answers   Amazon, Peak6, Yahoo,


program to Reverse a linked list

12 Answers   Aricent, Microsoft, Ness Technologies,


main() { int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf(" %d ",*c); ++q; } for(j=0;j<5;j++){ printf(" %d ",*p); ++p; } }

2 Answers   CSS, Wipro,


hello sir,is there any function in C that can calculate number of digits in an int type variable,suppose:int a=123; 3 digits in a.what ll b answer?

6 Answers  


main() { printf("\nab"); printf("\bsi"); printf("\rha"); }

3 Answers  


Categories