LeetCode 98

Posted 菜鸡的世界

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 98相关的知识,希望对你有一定的参考价值。

https://leetcode-cn.com/problems/validate-binary-search-tree/

树题,没什么好说的,直接递归就完事了。

第一种,使用中序遍历将输出值保存在list中,然后检查这个list是否升序的就可以AC.不过这个方法比较慢,3ms,java上只击败了19.96%的人。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    ArrayList<Integer> list;
    public boolean isValidBST(TreeNode root) {
        if(root == null){
            return true;
        }
        list = new ArrayList<>();
        dfs(root);
        for(int i = 1; i < list.size(); i++){
            if(list.get(i) <= list.get(i-1)){
                return false;
            }
        }
        return true;
    }

    private void dfs(TreeNode root){
        if(root == null){
            return;
        }
        dfs(root.left);
        list.add(root.val);
        dfs(root.right);
    }
}

第二种方法,直接用递归进行检查。注意我们要用Long.MAX_VALUE和Long.MIN_VALUE来输出最大和最小值,否则会被测试用例的边界值卡死。

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {

    public boolean isValidBST(TreeNode root) {
        return dfs(root,Long.MIN_VALUE,Long.MAX_VALUE);
    }

    private boolean dfs(TreeNode root, long min, long max){
        if(root == null){
            return true;
        }
        if(root.val <= min || root.val >= max){
            return false;
        }
        return dfs(root.left,min,root.val) && dfs(root.right, root.val, max);
    }
}

 

以上是关于LeetCode 98的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode_98]Validate Binary Search Tree

Leetcode98. 验证二叉搜索树(递归)

LeetCode 98 验证二叉搜索树

代码随想录Day20-Leetcode654.最大二叉树,617.合并二叉树,700.二叉搜索树中的搜索,98.验证二叉搜索树

⭐算法入门⭐《二叉树 - 二叉搜索树》简单02 —— LeetCode 98. 验证二叉搜索树

LeetCode刷题98-中等-验证二叉搜索树