Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
For example, given n = 3, a solution set is:
"((()))", "(()())", "(())()", "()(())", "()()()"
Code:
class Solution { public: void generate(int l, int r, string s, vector<string> &res){ if(l==0&&r==0){ res.push_back(s); return; } if(l>0) generate(l-1,r,s+'(',res); if(r>l) generate(l,r-1,s+')',res); } vector<string> generateParenthesis(int n) { vector<string> res; string s; if(n==0) return res; generate(n,n,s,res); return res; } };
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步