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

What is unary operator?

0 Answers  


write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.

3 Answers  


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

0 Answers   Aspire, Infogain,


What is the right type to use for boolean values in c?

0 Answers  


What is Bitwise Operator and how it works?

1 Answers  


In which header file is the null macro defined?

0 Answers  


Was 2000 a leap year?

0 Answers  


What are the characteristics of arrays in c?

0 Answers  


c program to arrange digits in a no in ascending and descending order

1 Answers  


Explain what is the difference between functions abs() and fabs()?

0 Answers  


write a program without using main function?

2 Answers   TCS,


What is the difference between typedef and #define?

0 Answers  


Categories