#1
24th March 2022, 10:38 PM
|
|||
|
|||
Write an efficient program to test whether a given tree is Binary search Tree or not
You have a tree and address of its root. Write an efficient program to test whether a given tree is Binary search Tree or not. (Hint: In-order traversal of binary search tree is sorted in increasing order. Use this property to develop program)
|
|
|