leetcode/include/s0701_insert_into_a_binary_...

12 lines
216 B
C++

#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