题解 | #判断是不是二叉搜索树#
判断是不是二叉搜索树
http://www.nowcoder.com/practice/a69242b39baf45dea217815c7dedb52b
package main
import . "nc_tools"
/*
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return bool布尔型
var b = true
func isValidBST(root *TreeNode) bool {
if root == nil {
return true
}
helperNode(root)
return b
}
func helperNode(root *TreeNode) {
if root == nil {
return
}
helperNode(root.Left)
if root.Val < cache {
b = false
return
}
cache = root.Val
helperNode(root.Right)
}
import . "nc_tools"
/*
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return bool布尔型
*/
// 取int最小值
var cache = -1 << (32 - 1)var b = true
func isValidBST(root *TreeNode) bool {
if root == nil {
return true
}
helperNode(root)
return b
}
func helperNode(root *TreeNode) {
if root == nil {
return
}
helperNode(root.Left)
if root.Val < cache {
b = false
return
}
cache = root.Val
helperNode(root.Right)
}