This commit is contained in:
2023-02-01 10:57:38 +08:00
parent 5190b92cbb
commit 8c694f2996
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#ifndef S0701_INSERT_INTO_A_BINARY_SEARCH_TREE_HPP
#define S0701_INSERT_INTO_A_BINARY_SEARCH_TREE_HPP
#include "structures.hpp"
class S0701 {
public:
TreeNode* insertIntoBST(TreeNode* root, int val);
};
#endif