Answer Posted / hr@tgksolutions.com
Data is efficiently stored and retrieved using a binary search tree.
Nodes with keys less than the node's key value can be found in the left sub-tree.
Nodes with keys larger than or equal to the node's key value can be found in the right sub-tree.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Explain setjmp()?
Do array subscripts always start with zero?
What are the differences between Structures and Arrays?
Explain b+ tree?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
difference between object file and executable file
How do you generate random numbers in C?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is I ++ in c programming?
What is the use of typedef in structure in c?
What is structure packing in c?
what are the advantages of a macro over a function?
What do you mean by Recursion Function?
Where are local variables stored in c?