🎞️98. 验证二叉搜索树 - 力扣(Leetcode)
2024-1-22
| 2024-1-22
0  |  阅读时长 0 分钟
type
status
date
slug
summary
tags
category
password
URL
PublishDate
icon
给你一个二叉树的根节点 root ,判断其是否是一个有效的二叉搜索树。
有效 二叉搜索树定义如下:
  • 节点的左子树只包含 小于 当前节点的数。
  • 节点的右子树只包含 大于 当前节点的数。
  • 所有左子树和右子树自身必须也是二叉搜索树。
示例 1:
notion image
示例 2:
notion image
提示:
  • leetcode
  • 136. 只出现一次的数字 - 力扣(Leetcode)653. 两数之和 IV - 输入二叉搜索树 - 力扣(Leetcode)
    Loading...
    目录