#ifndef S0022_GENERATE_PARENTHESES_HPP #define S0022_GENERATE_PARENTHESES_HPP #include #include #include using namespace std; class S0022 { public: vector generateParenthesis(int n); void dfs(string current, int left, int right, vector &result); }; #endif