Trees: Is This a Binary Search Tree?


Problem Statement :


For the purposes of this challenge, we define a binary search tree to be a binary tree with the following properties:

The data value of every node in a node's left subtree is less than the data value of that node.
The data value of every node in a node's right subtree is greater than the data value of that node.
The data value of every node is distinct.
For example, the image on the left below is a valid BST. The one on the right fails on several counts:
- All of the numbers on the right branch from the root are not larger than the root.
- All of the numbers on the right branch from node 5 are not larger than 5.
- All of the numbers on the left branch from node 5 are not smaller than 5.
- The data value 1 is repeated.


Function Description

Complete the function checkBST in the editor below. It must return a boolean denoting whether or not the binary tree is a binary search tree.

checkBST has the following parameter(s):

root: a reference to the root node of a tree to test
Input Format

You are not responsible for reading any input from stdin. Hidden code stubs will assemble a binary tree and pass its root node to your function as an argument.

Constraints

0   <=  data  <=  10^4


Output Format

Your function must return a boolean true if the tree is a binary search tree. Otherwise, it must return false.



Solution :



title-img




                        Solution in C++ :

In   C++ :






   struct Node {
      int data;
      Node* left;
      Node* right;
   }
*/
bool soy=true;
int mini(int a, int b)
    {
    return a<b ? a:b;
}
int maxi(int a, int b)
    {
    return a>b ? a:b;
}
typedef pair<int, int> ii;
#define f first
#define s second
ii revisar(Node* root)
{
    ii h(-1, 10005), iz(10005,10005), de(-1,-1);
     if (root->left!=NULL)
     {
         iz=revisar(root->left);
         if (iz.s >= root->data or iz.f >= root->data) soy=false;
     }
    if (root->right!=NULL)
    {
        de=revisar(root->right);    
        if (de.f <= root->data or de.s <= root->data) soy=false;
    }
    
    
    return ii{mini(root->data, iz.f),maxi(root->data, de.s) };
}


   bool checkBST(Node* root) {
      soy=true;
       if (root!=NULL)
        revisar(root);
       //else return false;
       return soy;
   }
                    


                        Solution in Java :

In   Java :






    class Node {
        int data;
        Node left;
        Node right;
     }
*/
    boolean checkBST(Node root) {  
        //return fasle;
        return checkBSTHelper(root, Integer.MIN_VALUE, Integer.MAX_VALUE);
    }
     
    
    private boolean checkBSTHelper(Node n, int min, int max) {
        if (n == null) return true;
        if (n.data <= min || n.data >= max) return false;
        return checkBSTHelper(n.left, min, n.data) && checkBSTHelper(n.right, n.data, max);
    }
                    


                        Solution in Python : 
                            
In   Python3 :






""" Node is defined as
class node:
    def __init__(self, data):
        self.data = data
        self.left = None
        self.right = None
"""

def check(node, max_val = float('inf'), min_val = float('-inf')):
    if not node:
        return True
    if node.data <= min_val or node.data >= max_val:
        return False
    return check(node.left, node.data, min_val) and check(node.right, max_val, node.data)

def check_binary_search_tree_(root):
    return check(root)
                    


View More Similar Problems

Maximum Element

You have an empty sequence, and you will be given N queries. Each query is one of these three types: 1 x -Push the element x into the stack. 2 -Delete the element present at the top of the stack. 3 -Print the maximum element in the stack. Input Format The first line of input contains an integer, N . The next N lines each contain an above mentioned query. (It is guaranteed that each

View Solution →

Balanced Brackets

A bracket is considered to be any one of the following characters: (, ), {, }, [, or ]. Two brackets are considered to be a matched pair if the an opening bracket (i.e., (, [, or {) occurs to the left of a closing bracket (i.e., ), ], or }) of the exact same type. There are three types of matched pairs of brackets: [], {}, and (). A matching pair of brackets is not balanced if the set of bra

View Solution →

Equal Stacks

ou have three stacks of cylinders where each cylinder has the same diameter, but they may vary in height. You can change the height of a stack by removing and discarding its topmost cylinder any number of times. Find the maximum possible height of the stacks such that all of the stacks are exactly the same height. This means you must remove zero or more cylinders from the top of zero or more of

View Solution →

Game of Two Stacks

Alexa has two stacks of non-negative integers, stack A = [a0, a1, . . . , an-1 ] and stack B = [b0, b1, . . . , b m-1] where index 0 denotes the top of the stack. Alexa challenges Nick to play the following game: In each move, Nick can remove one integer from the top of either stack A or stack B. Nick keeps a running sum of the integers he removes from the two stacks. Nick is disqualified f

View Solution →

Largest Rectangle

Skyline Real Estate Developers is planning to demolish a number of old, unoccupied buildings and construct a shopping mall in their place. Your task is to find the largest solid area in which the mall can be constructed. There are a number of buildings in a certain two-dimensional landscape. Each building has a height, given by . If you join adjacent buildings, they will form a solid rectangle

View Solution →

Simple Text Editor

In this challenge, you must implement a simple text editor. Initially, your editor contains an empty string, S. You must perform Q operations of the following 4 types: 1. append(W) - Append W string to the end of S. 2 . delete( k ) - Delete the last k characters of S. 3 .print( k ) - Print the kth character of S. 4 . undo( ) - Undo the last (not previously undone) operation of type 1 or 2,

View Solution →