I need to check if binary tree is a binary search tree. I\'ve tried to use this algorithm
public boolean isBST(Node node) { if(node == null)