Problem Description

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

valid BST is defined as follows:

Examples

Example 1:

https://assets.leetcode.com/uploads/2020/12/01/tree1.jpg

Input: root = [2,1,3]
Output: true

Example 2:

https://assets.leetcode.com/uploads/2020/12/01/tree2.jpg

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

Constraints:

解析

題目給定一個二元樹的根結點 root

想要判斷這個由 root 所形成的樹是不是一棵二元搜尋樹

如果 root 所形成的樹是一個二元搜尋樹有以下特性