1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_98.java 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
stevesun 提交于 2017-08-22 06:13 +08:00 . refactor format
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
/**
* 98. Validate Binary Search Tree
*
* 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.
*/
public class _98 {
public static class Solution1 {
public boolean isValidBST(TreeNode root) {
return valid(root, null, null);
}
boolean valid(TreeNode root, Integer min, Integer max) {
if (root == null) {
return true;
}
if ((min != null && root.val <= min) || (max != null && root.val >= max)) {
return false;
}
return valid(root.left, min, root.val) && valid(root.right, root.val, max);
}
}
public static class Solution2 {
public boolean isValidBST(TreeNode root) {
if (root == null) {
return true;
}
return dfs(root.left, Long.MIN_VALUE, root.val) && dfs(root.right, root.val, Long.MAX_VALUE);
}
private boolean dfs(TreeNode root, long minValue, long maxValue) {
if (root == null) {
return true;
}
if (root != null && (root.val <= minValue || root.val >= maxValue)) {
return false;
}
boolean leftResult = true;
boolean rightResult = true;
if (root.left != null) {
leftResult = dfs(root.left, minValue, root.val);
}
if (root.right != null) {
rightResult = dfs(root.right, root.val, maxValue);
}
return leftResult && rightResult;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助