2013-04-12

i'm understanding the question but wanna make sure if my implementation is correct or not =|

The Q is :

Write a method that accepts as its argument a BinaryTree object and returns true if the argument tree is a binary search tree. Examine each node in the given tree only once

This is my implementation java code :

Show more