-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path22.cpp
54 lines (41 loc) · 1.15 KB
/
22.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# include <iostream>
# include <vector>
using namespace std;
class Solution {
public:
vector<string> result;
vector<string> generateParenthesis(int n) {
string curStr;
helper(curStr,0,0,n);
return result;
}
void helper(string curStr, int leftCount, int rightCount,int n){
if (leftCount == n){
if(rightCount == n){
result.push_back(curStr);
return;
}
else{
curStr += ')';
helper(curStr,leftCount,++rightCount,n);
}
}
else{
string curStr1 = curStr;
curStr1 += '(';
int cur_leftCount = leftCount;
helper(curStr1,++cur_leftCount,rightCount,n);
if(leftCount > rightCount){
string curStr2 = curStr;
curStr2 +=')';
helper(curStr2,leftCount,++rightCount,n);
}
}
}
};
int main(){
Solution sol;
vector<string> result = sol.generateParenthesis(4);
for(vector<string>::iterator it = result.begin(); it != result.end(); ++it)
cout<< *it<<endl;
}