2021-06-09

leetcode938-DFS,递归and非递归解法


题目描述

  1. 二叉搜索树的范围和
    给定二叉搜索树的根结点 root,返回值位于范围 [low, high] 之间的所有结点的值的和。

示例 1:
在这里插入图片描述

输入:root = [10,5,15,3,7,null,18], low = 7, high = 15
输出:32
示例 2:

输入:root = [10,5,15,3,7,13,18,1,null,6], low = 6, high = 10
输出:23

提示:

树中节点数目在范围 [1, 2 * 104] 内
1 <= Node.val <= 105
1 <= low <= high <= 105
所有 Node.val 互不相同


1.解题思路

利用中序遍历方法,进行题解。

代码

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def rangeSumBST(self, root: TreeNode, low: int, high: int) -> int:
        self.count=0
        self.start=False
        self.DFS(root,low,high)
        return self.count
    def DFS(self,root,low,high):
        if root.left !=None:
            self.DFS(root.left,low,high)
        #中序遍历
        if root.val ==low:
            self.start=True
        if self.start:
            self.count+=root.val
        if root.val==high:
            self.start=False
        if root.right !=None:
            self.DFS(root.right,low,high)

2.解题思路

栈、中序遍历、非递归

代码

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def rangeSumBST(self, root: TreeNode, low: int, high: int) -> int:
        self.count=0
        self.start=False
        self.DFS(root,low,high)
        return self.count
    def DFS(self,root,low,high):
        stack=[]
        p=root
        while p!=None or len(stack)!=0:
            while p!=None:
                stack.append(p)
                p=p.left
            if len(stack)!=0:
                p=stack.pop()
                #访问
                ##开始访问条件
                if p.val==low:
                    self.start=True
                ##计数
                if self.start:
                    self.count+=p.val
                ##结束访问条件
                if p.val==high:
                    self.start=False
                p=p.right

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

冲呀(๑• . •๑)

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值