题目:
题解:
class Solution {static List<String> res = new ArrayList<String>(); //记录答案 public List<String> generateParenthesis(int n) {res.clear();dfs(n, 0, 0, "");return res;}public void dfs(int n ,int lc, int rc ,String str){if( lc == n && rc == n) res.add(str); //递归边界else{if(lc < n) dfs(n, lc + 1, rc, str + "("); //拼接左括号if(rc < n && lc > rc) dfs(n, lc, rc + 1, str + ")"); //拼接右括号}}
}