Explain what a Binary Search Tree is.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / glibwaresoftsolutions
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 |
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 |
What is unary operator?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the right type to use for boolean values in c?
What is Bitwise Operator and how it works?
In which header file is the null macro defined?
Was 2000 a leap year?
What are the characteristics of arrays in c?
c program to arrange digits in a no in ascending and descending order
Explain what is the difference between functions abs() and fabs()?
write a program without using main function?
What is the difference between typedef and #define?