Respuesta :
Answer: The difference between the binary search tree and the binary tree are as follows:-
- Binary search tree is the binary tree that has some specific structure whereas the binary tree is the data structure that has some particular hierarchy design.
- Nodes of the binary search tree are present in a specific order while the nodes of the binary tree have the one parent node and maximum of two child nodes.
- Binary search tree has the main activity of searching through keys whereas the binary tree performs several operations like inserting the element, deletion, etc.
Answer:
A Binary Tree follows one simple rule that each parent node has no more than two child nodes, whereas a Binary Search Tree is just a variant of the binary tree which follows a relative order to how the nodes should be organized in a tree.