#ifndef S0108_CONVERT_SORTED_ARRAY_TO_BINARY_SEARCH_TREE_HPP #define S0108_CONVERT_SORTED_ARRAY_TO_BINARY_SEARCH_TREE_HPP #include #include "structures.hpp" using namespace std; class S0108 { public: TreeNode* sortedArrayToBST(vector& nums); }; #endif