Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
李楚霏
/
leetCode_Solution_Record
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
97bb1e2a
authored
Sep 29, 2020
by
李楚霏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
week6
parent
196b37e2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
70works/week6/generate_parenttheses.cpp
+41
-0
No files found.
70works/week6/generate_parenttheses.cpp
0 → 100644
View file @
97bb1e2a
#include<iostream>
#include<vector>
using
namespace
std
;
class
Solution
{
public
:
vector
<
string
>
generateParenthesis
(
int
n
)
{
vector
<
string
>
res
;
if
(
n
==
0
)
return
res
;
dfs
(
" "
,
0
,
0
,
n
,
res
);
return
res
;
}
void
dfs
(
string
curStr
,
int
left
,
int
right
,
int
n
,
vector
<
string
>
&
res
){
if
(
left
==
n
&&
right
==
n
)
{
cout
<<
curStr
<<
endl
;
cout
<<
"size1:"
<<
res
.
size
()
<<
endl
;
res
.
push_back
(
curStr
);
cout
<<
"size2:"
<<
res
.
size
()
<<
endl
;
return
;
}
if
(
left
<
right
)
{
return
;
}
if
(
left
<
n
)
{
dfs
(
curStr
+
"("
,
left
+
1
,
right
,
n
,
res
);
}
if
(
right
<
n
)
{
dfs
(
curStr
+
")"
,
left
,
right
+
1
,
n
,
res
);
}
}
};
int
main
()
{
Solution
s
;
vector
<
string
>
res
;
res
=
s
.
generateParenthesis
(
3
);
for
(
int
i
=
0
;
i
<
res
.
size
();
i
++
)
{
cout
<<
"res:"
<<
res
[
i
]
<<
endl
;
}
return
0
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment