List Headline Image
Updated by helpmestudyrbo on Aug 18, 2021
 REPORT
1 items   1 followers   0 votes   2 views

What is Binary Search Tree

A binary search tree is also called a sorted Binary tree or ordered binary tree in which data is stored in an organized way. A binary search tree or BTS is a type of binary tree in which every node has a comparable key and an associated value.

Each key has to satisfy the condition that it is larger than the keys in all nodes in that node's left subtree and smaller than all the keys in all nodes of the right subtree

A binary search tree is also called a sorted Binary tree or ordered binary tree in which data is stored in an organized way. A binary search tree or BTS is a type of binary tree in which every node has a comparable key and an associated value.

Each key has to satisfy the condition that it is larger than the keys in all nodes in that node's left subtree and smaller than all the keys in all nodes of the right subtree.