Reading material

Pages 228-236 (Section 6.1), pages 236-246 (Section 6.2)

Additional material

InspectableTree
Tree

Question

Consider a binary trees whose nodes contain integers. We will call such a binary tree t a binary search tree if for each internal node n of t Write an algorithm that tests if a binary tree is a binary search tree.

Algorithm isBST(t):
   Input: binary tree whose nodes contains integers
   Output: Is t a binary search tree?