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 |
Describe the header file and its usage in c programming?
What are data types in c language?
What is array of structure in c?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
Is there a way to switch on strings?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
Function calling procedures? and their differences? Why should one go for Call by Reference?
write the program to find multiplication of 2-D matrix??????????
can a union be self-referenced?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What is an example of enumeration?
What is the purpose of scanf() and printf() functions?