22. Generate Parentheses

題意 給一個數字n,求所有n對小括號的所有合法表達式 思路 遞歸處理,只要在遞歸過程中,保證右邊符號數量不大於左邊符號數目即可。 代碼 class Solution { public: vector<string> res; void dfs(string now, int left, int right, int n) { if (left + right
相關文章
相關標籤/搜索