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 union in c?

0 Answers  


How do you define a function?

0 Answers  


A program to write a number of letters and numbers, such as counting and display

0 Answers  


the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above

0 Answers  


what is the hardware model of CFG( context free grammar)

0 Answers   Microsoft,


What is dynamic dispatch in c++?

0 Answers  


write a program to display the numbers having digit 9 in the given range from 1 to 100

1 Answers  


main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail

6 Answers   TCS,


Under what circumstances does a name clash occur?

0 Answers   InterGraph,


program that accepts amount in figures and print that in words

2 Answers   Infosys, Lovely Professional University, Wipro,


Explain what is wrong with this statement? Myname = ?robin?;

0 Answers  


#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }

7 Answers   HCL,


Categories