Given the root
of a binary tree, determine whether it is a valid binary search tree (BST).
For a tree to qualify as a valid BST, it must satisfy the following conditions:
The binary tree is represented by a collection of TreeNode
s, where each node has optional left
and right
child nodes, which are also TreeNode
s.
A TreeNode
has the following interface:
interface TreeNode {val: number;left: TreeNode | null;right: TreeNode | null;}
root: TreeNode
: Root node of the tree. Examples display a level-order traversal of the treeInput: root = [10,5,15,1,8,12,20]Output: trueExplanation: The tree is a valid BST because all nodes follow the BST properties.
Input: root = [5,1,4,null,null,null,3]Output: falseExplanation: The tree is not a valid BST because the node with value 3 is in the right subtree of the node with value 4, which violates the BST property.
Input: root = [3,2,4,1,null,null,5]Output: trueExplanation: The tree is a valid BST because all nodes follow the BST properties.
TreeNode.val
<= 1,000,000Given the root
of a binary tree, determine whether it is a valid binary search tree (BST).
For a tree to qualify as a valid BST, it must satisfy the following conditions:
The binary tree is represented by a collection of TreeNode
s, where each node has optional left
and right
child nodes, which are also TreeNode
s.
A TreeNode
has the following interface:
interface TreeNode {val: number;left: TreeNode | null;right: TreeNode | null;}
root: TreeNode
: Root node of the tree. Examples display a level-order traversal of the treeInput: root = [10,5,15,1,8,12,20]Output: trueExplanation: The tree is a valid BST because all nodes follow the BST properties.
Input: root = [5,1,4,null,null,null,3]Output: falseExplanation: The tree is not a valid BST because the node with value 3 is in the right subtree of the node with value 4, which violates the BST property.
Input: root = [3,2,4,1,null,null,5]Output: trueExplanation: The tree is a valid BST because all nodes follow the BST properties.
TreeNode.val
<= 1,000,000console.log()
aparecerão aqui.