Computer Science, asked by Ranjitsinghvirk6947, 1 year ago

What is a binary search tree in datastructures?

Answers

Answered by Anonymous
8
Hey mate ^_^

=======
Answer:
=======

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.

#Be Brainly❤️
Answered by shikha888
0
Answer-

A binary search tree (BST) is a binary tree where each node has a Comparable key (and an associated value) and satisfies the restriction that the key in any node is larger than the keys in all nodes in that node's left subtree and smaller than the keys in all nodes in that node's right subtree.
Similar questions