This commit is contained in:
2023-01-31 15:30:31 +08:00
parent c442846324
commit 5b947bfadc
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef S0098_VALIDATE_BINARY_SEARCH_TREE_HPP
#define S0098_VALIDATE_BINARY_SEARCH_TREE_HPP
#include "structures.hpp"
class S0098 {
public:
bool isValidBST(TreeNode* root);
};
#endif