前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >leetcode: 98. Validate Binary Search Tree

leetcode: 98. Validate Binary Search Tree

作者头像
JNingWei
发布2018-09-27 16:30:25
3130
发布2018-09-27 16:30:25
举报
文章被收录于专栏:JNing的专栏JNing的专栏

Problem

代码语言:javascript
复制
# Given a binary tree, determine if it is a valid binary search tree (BST).
#
# Assume a BST is defined as follows:
#
# The left subtree of a node contains only nodes with keys less than the node's key.
# The right subtree of a node contains only nodes with keys greater than the node's key.
# Both the left and right subtrees must also be binary search trees.
# Example 1:
#        2
#       / \
#      1   3
# Binary tree [2,1,3], return true.
# Example 2:
#        1
#       / \
#      2   3
# Binary tree [1,2,3], return false.

Idea

代码语言:javascript
复制
BST == 中序遍历满足 升序

AC

DFS (中序遍历,生成数组后判断是否为升序):

代码语言:javascript
复制
# Time:  O(n)
# Space: O(n)
class Solution():
    def isValidBST(self, root):
        if root:
            x = []
            self.inorder(root, x)
            for i in range(len(x)-1):
                if x[i] >= x[i+1]:
                    return False
        return True
    def inorder(self, root, x):
        if root:
            self.inorder(root.left, x)
            x.append(root.val)
            self.inorder(root.right, x)

DFS (直接在中序遍历里面判断):

代码语言:javascript
复制
# Time:  O(n)
# Space: O(0)
class Solution():
    flag = True
    pre = float("-inf")
    def isValidBST(self, root):
        if not root:
            return True
        self.inorder(root)
        return self.flag
    def inorder(self, root):
        if root:
            self.inorder(root.left)
            if self.pre >= root.val:
                self.flag = False
            self.pre = root.val
            self.inorder(root.right)
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017年11月23日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Problem
  • Idea
  • AC
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档