Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wanted to know if a given binary tree is a binary search tree or not.

I don't know How to do that?

The only thing I know is that the inorder traversal of BST will gives you ascending order output.

So, is this the only condition we need to verify or is there anything else we are suppose to check.

In case if there are some other necessary conditions to be checked, What are they? and why those conditions are necessary to be checked? Because, I think, INORDER traversal itself can tell you easily if the given tree is BST or not.

share|improve this question
Start with the definition of a Binary Search Tree. Does the tree given match this definition? (Note that the in-order traversal rule can be derived by applying the rules recursively. Also note that different trees, e.g. RB, may qualify as a BST and another tree type.) – user166390 Apr 16 '12 at 8:44
(Or rather, a RB tree is a BST, etc.) – user166390 Apr 16 '12 at 8:51
Can you please go through the below link....the question i asked is almost similar to that. But in that link, people have suggested some other ways...apart from INORDER traversal. I dont know why those extra conditions needs to be checked. stackoverflow.com/questions/499995/… – Jatin Apr 16 '12 at 9:02
All the answers in the link you have provided pretty much does the same "an inorder walk (in different languages) and check if the left sub-tree is smaller than the root and the right sub-tree is greater than the root". This is exactly what @Andreas Brinck has said in his answer below. – yasouser Apr 16 '12 at 13:11

2 Answers

up vote 7 down vote accepted

Yes, if inorder traversal of the tree gives you a strictly monotonic list of values that is sufficient to determine that the tree is a BST.

share|improve this answer

By definition of Binary search tree,if every node of the binary tree satisfy the following conditions then it is a bst:

• The left subtree of a node should contain only nodes with keys less than the node’s key.

• The right subtree of a node should contain only nodes with keys greater than the node’s key.

• Both the left and right subtrees must also be binary search trees.

All the above conditions are verified if the inorder traversal is in ascending order.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.