Computer Science, asked by Sandeepjadaun2772, 11 months ago

How many children does a binary search tree will have?

Answers

Answered by Anonymous
1
Binary Search Tree, is a node-based binary tree data structure which has the following properties:

The left subtree of a node contains only nodes with keys lesser than the node’s key.The right subtree of a node contains only nodes with keys greater than the node’s key.The left and right subtree each must also be a binary search tree.
There must be no duplicate nodes
Similar questions