#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