摘要:
思路:每次插入一对括号,注意对于之前出现过的字符串就不要在处理了,否则会TLE. 1 1 #include 2 2 #include 3 3 #include 4 4 using namespace std; 5 5 class Solution { 6 6 public: 7 7 set strset; 8 8 vector generateParenthesis(int n) { 9 9 string s = "";10 10 vector ret;11 11 if(n &ret){16 16 ... 阅读全文