🌔700. 二叉搜索树中的搜索 - 力扣(Leetcode)
2024-1-22
| 2024-1-22
0  |  阅读时长 0 分钟
type
status
date
slug
summary
tags
category
password
URL
PublishDate
icon
给定二叉搜索树(BST)的根节点 root 和一个整数值 val
你需要在 BST 中找到节点值等于 val 的节点。 返回以该节点为根的子树。 如果节点不存在,则返回 null
示例 1:
notion image
示例 2:
notion image
提示:
  • 数中节点数在 [1, 5000] 范围内
  • root 是二叉搜索树

  • leetcode
  • 701. 二叉搜索树中的插入操作 - 力扣(Leetcode)112. 路径总和 - 力扣(Leetcode)
    Loading...
    目录