-1
我實現此功能檢查,如果樹是二叉搜索樹,但它一直扔段錯誤錯誤二叉搜索樹分段故障++
bool checkBST(Node* root) {
if(root == nullptr){
return true;
}
else{
if(root->data <= root->left->data){
return false;
}
else if(root->data >= root->right->data){
return false;
}
}
return true&&checkBST(root->left)&&checkBST(root->right);
}
感謝它的工作。我不知道我怎麼沒有看到。 – FiyinDaniel