Explain what a Binary Search Tree is.

Answers were Sorted based on User's Feedback



Explain what a Binary Search Tree is...

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

Explain what a Binary Search Tree is...

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

Explain what a Binary Search Tree is...

Answer / 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

More C Interview Questions

In C language, a variable name cannot contain?

1 Answers  


Why do we need volatile in c?

1 Answers  


what is a static function

10 Answers   Satyam,


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1 Answers  


What is multidimensional arrays

1 Answers  


How can I find out if there are characters available for reading?

1 Answers  


progrem to generate the following series 1 12 123 1234 12345

6 Answers   HCL, Wipro,


Where we use clrscr in c?

1 Answers  


How many header files are in c?

1 Answers  


What is a rvalue?

1 Answers   Global Logic,


What is an auto keyword in c?

1 Answers  


Explain how do you determine whether to use a stream function or a low-level function?

1 Answers  


Categories