forked from aylei/leetcode-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathn0022_generate_parentheses.rs
70 lines (64 loc) · 1.54 KB
/
n0022_generate_parentheses.rs
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* [22] Generate Parentheses
*
*
* Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
*
*
*
* For example, given n = 3, a solution set is:
*
*
* [
* "((()))",
* "(()())",
* "(())()",
* "()(())",
* "()()()"
* ]
*
*/
pub struct Solution {}
// submission codes start here
// DFS
impl Solution {
pub fn generate_parenthesis(n: i32) -> Vec<String> {
if n < 1 { return vec![] }
let mut result = Vec::new();
Solution::dfs(n, 0, 0, &mut result, String::new());
result
}
fn dfs(n: i32, left: i32, right: i32, result: &mut Vec<String>, mut path: String) {
if left == n && right == n {
result.push(path);
return;
}
if left < n {
let mut new_path = path.clone();
new_path.push('(');
Solution::dfs(n, left + 1, right, result, new_path);
}
if right < left {
// reuse path to avoid clone overhead
path.push(')');
Solution::dfs(n, left, right + 1, result, path);
}
}
}
// submission codes end
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_22() {
assert_eq!(Solution::generate_parenthesis(1), vec!["()"] );
assert_eq!(Solution::generate_parenthesis(2), vec!["(())", "()()"] );
assert_eq!(Solution::generate_parenthesis(3), vec![
"((()))",
"(()())",
"(())()",
"()(())",
"()()()"
] );
}
}