How to write an in-order traversal to check if its a valid BST but with keeping the previous node as a parameter?

huangapple 未分类评论44阅读模式
英文:

How to write an in-order traversal to check if its a valid BST but with keeping the previous node as a parameter?

问题

我正在尝试编写一个递归代码,使用中序遍历但不使用数组来检查二叉搜索树是否有效。换句话说,只使用一个先前的值。我尝试将先前的值保持为一个参数,但代码失败了。我已经尝试过调试,但不确定代码为什么不起作用。

class Solution {
    public boolean isValidBST(TreeNode root) {
        return isValidBSTPrev(root, null);
    }
    public boolean isValidBSTPrev(TreeNode root, TreeNode prev) {
        if(root == null) {
            return true;
        } else if(isValidBSTPrev(root.left, root) 
                  && (prev!=null && root.val > prev.val) 
                  && isValidBSTPrev(root.right, root)) {
            return true;
        } else {
            return false;
        }
    }
}
英文:

I'm trying to write a recursive code to check if a binary search tree is valid using an in-order traversal but without using an array. In other words, using only a previous value. I'm trying to keep the previous value as a parameter, but the code is failing. I've trie debugging but not sure why the code is not working.

class Solution {
    public boolean isValidBST(TreeNode root) {
        return isValidBSTPrev(root, null);
    }
    public boolean isValidBSTPrev(TreeNode root, TreeNode prev) {
        if(root == null) {
            return true;
        } else if(isValidBSTPrev(root.left, root) 
                  && (prev!=null && root.val > prev.val) 
                  && isValidBSTPrev(root.right, root)) {
            return true;
        } else {
            return false;
        }
    }
}

huangapple
  • 本文由 发表于 2020年7月23日 16:43:46
  • 转载请务必保留本文链接:https://java.coder-hub.com/63050305.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定