write a program if a binary tree is BST or not
Answers
Answered by
1
program to check if a binary tree is BST or not. A binary search tree (BST) is a node based binary tree data structure which has the following properties. The left subtree of a node contains only nodes with keys less than the node's key. ... Both the left and right subtrees must also be binary search trees.
Similar questions