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
What is define directive?
Is sizeof a keyword in c?
Why is c fast?
How #define works?
What are external variables in c?
main() { printf("hello"); fork(); }
What is a char c?
What is the default value of local and global variables in c?
Can a variable be both static and volatile in c?
What is the best way of making my program efficient?
What does p mean in physics?
Explain how can I prevent another program from modifying part of a file that I am modifying?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is the size of enum in bytes?
Is main a keyword in c?