/** * * @param n int整型 * @return string字符串一维数组 */ function generateParenthesis( n ) { // write code here let result = [] //let temp = n.split(''); dfs(n, n, '', result); // 一开始左右括号的数量都为n return result; function dfs (left,right,str,result){ if(left > right)return ...