Answers

Question and Answer:

  Home  Data Structures Trees

⟩ Explain binary tree? Explain its uses?

A binary tree is a tree structure, in which each node has only two child nodes. The first node is known as root node. The parent has two nodes namely left child and right child.

Uses of binary tree:

- To create sorting routine.

- Persisting data items for the purpose of fast lookup later.

- For inserting a new item faster

 201 views

More Questions for you: