报错:non-const lvalue reference to type ‘std::string‘ cannot bind to a value of unrelated 不能对临时变量加引用
小编在写LeetCode–22.括号生成的时候发现传值的时候一个小问题,代码如下classSolution{public:vectorres;vectorgenerateParenthesis(intn){dfs("",n,n);returnres;}//这里必须是const否则报错//voiddfs(conststring&tmp,intleft,intright)voiddfs(string&