Answer Posted / nashiinformaticssolutions
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
When should a far pointer be used?
What is the difference between int main and void main?
Do pointers need to be initialized?
Is fortran faster than c?
What is the right way to use errno?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Difference between pass by reference and pass by value?
Explain how do you determine whether to use a stream function or a low-level function?
Explain the advantages of using macro in c language?
write a program to display all prime numbers
write a progrmm in c language take user interface generate table using for loop?
What is the difference between far and near ?
How can I discover how many arguments a function was actually called with?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Why is main function so important?