我写了这个递归函数,它按预期工作。它验证二叉树,即检查给定的二叉树是否是二叉搜索树,并给出正确的答案。
但是,我收到编译器警告说:
Control may reach end of non-void function
我确实知道这个错误意味着什么:函数应该返回 abool
而不仅仅是在函数结束时脱落。我只是不知道如何克服它,因为它确实返回 a bool
。
我试图搜索递归时可能忽略的东西,但无济于事。
bool isBSTRecursively(Node * root){
if (!root) {
return true;
}else if (!root->getLeft() && !root->getRight()){
return true;
}else if(!root->getLeft()){
if (root->getRight()->getData() > root->getData()) {
return isBSTRecursively(root->getRight());
}
}else if (!root->getRight()){
if (root->getLeft()->getData() < root->getData()) {
return isBSTRecursively(root->getLeft());
}
}else{
return (isBSTRecursively(root->getLeft()) && isBSTRecursively(root->getRight()));
}
}