Validate Binary Search Tree

Given a binary tree, determine if it is a valid binary search tree (BST).

Example

Example 1:

Input:

    2
   / \
  1   3

Output:
 true

Example 2:

    5
   / \
  1   4
     / \
    3   6

Output:
 false

Explanation:
 The input is: [5,1,4,null,null,3,6]. The root node's value is 5 but its right child's value is 4.

Note

中序遍历或者分治(设置最大和最小的边界,根据现有的值的情况更新)

Code

Last updated