What is binary tree give example?
Answer / Deepika Rajwani
A binary tree is a recursive data structure in which each node has at most two children, called the left child and the right child. Here is an example of a simple binary tree:nn```n1n| n-- 2n| n--- 3n| n-- 4n```
| Is This Answer Correct ? | 0 Yes | 0 No |
Which sorting method is slowest?
What is return map?
What is hash data type?
Define a priority queue?
what is the different between B-tree and B+ tree.
What is complete binary tree in data structure?
What is heap with example?
Can you tell me the differences between Array and ArrayList?
What is lifo?
Is list same as array?
What is perfect binary tree?
What are the advantages of linked list over an array?