Derive the complexity expression for AVL tree?
Answer / bipworld
height of AVL tree is limited to 1.44 log(n) where n is
number of nodes.
| Is This Answer Correct ? | 3 Yes | 1 No |
is it possible to create your own header files?
What does stand for?
How does variable declaration affect memory?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
program to find the magic square
what is the difference between structural,object based,object orientd programming languages?
Write a program for finding factorial of a number.
What are the string functions? List some string functions available in c.
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
What are the different categories of functions in c?
why r u join this company? give solid resons.
16 Answers IBM, Infosys, TCS,
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;