英文:
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;
}
}
}
专注分享java语言的经验与见解,让所有开发者获益!
评论