LeetCode669. 修剪二叉搜索树Golang版

LeetCode669. 修剪二叉搜索树Golang版

1. 问题描述

给你二叉搜索树的根节点 root ,同时给定最小边界low 和最大边界 high。通过修剪二叉搜索树,使得所有节点的值在[low, high]中。修剪树不应该改变保留在树中的元素的相对结构(即,如果没有被移除,原有的父代子代关系都应当保留)。 可以证明,存在唯一的答案。

所以结果应当返回修剪好的二叉搜索树的新的根节点。注意,根节点可能会根据给定的边界发生改变。
在这里插入图片描述
在这里插入图片描述

2. 思路

2.1. 递归

  1. 确定递归函数参数和返回值
	func trimBST(root *TreeNode, low int, high int) *TreeNode
  1. 确定结束条件
	if root == nil {
        return root
    }
  1. 确定单层递归逻辑
	if root.Val < low {
        right := trimBST(root.Right, low, high)
        return right
    }
    if root.Val > high {
        left := trimBST(root.Left, low, high)
        return left
    }

    root.Left = trimBST(root.Left, low, high)
    root.Right = trimBST(root.Right, low, high)
    return root

3. 代码

3.1. 递归代码

	/**
 * Definition for a binary tree node.
 * type TreeNode struct {
 *     Val int
 *     Left *TreeNode
 *     Right *TreeNode
 * }
 */
func trimBST(root *TreeNode, low int, high int) *TreeNode {
    if root == nil {
        return root
    }

    if root.Val < low {
        right := trimBST(root.Right, low, high)
        return right
    }
    if root.Val > high {
        left := trimBST(root.Left, low, high)
        return left
    }

    root.Left = trimBST(root.Left, low, high)
    root.Right = trimBST(root.Right, low, high)
    return root
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值