-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlib.rs
67 lines (58 loc) · 1.91 KB
/
lib.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
/*!
* Follow solution: https://leetcode.com/problems/generate-parentheses/discuss/10100/Easy-to-understand-Java-backtracking-solution
*/
pub struct Solution {}
impl Solution {
pub fn generate_parenthesis(n: i32) -> Vec<String> {
let mut list = Vec::new();
Self::backtrack(&mut list, "".to_string(), 0, 0, n as usize);
list
}
fn backtrack(list: &mut Vec<String>, s: String, open: usize, close: usize, max: usize) {
// 如果前缀为 s 的值,获取所有可能性,加入 list
if (s.chars().count()) == max * 2 {
list.push(s);
return;
}
if open < max {
// 如果前缀中的 `(` 数量达到最大值,不再往前缀中加入 `(`
Self::backtrack(list, s.clone() + "(", open + 1, close, max);
}
if close < open {
// 如果前缀中的 `)` 数量和 `(` 数量一样多了,不再往前缀中加入 `)`
Self::backtrack(list, s.clone() + ")", open, close + 1, max);
}
}
}
#[cfg(test)]
mod tests {
use super::*;
fn it_works(n: i32, expected: Vec<&str>) {
let mut result = Solution::generate_parenthesis(n);
let mut exp = expected.to_vec();
result.sort();
exp.sort();
assert_eq!(result, exp);
}
#[test]
fn example_1() {
let n = 3;
let expected = ["((()))", "(()())", "(())()", "()(())", "()()()"];
it_works(n, expected.to_vec());
}
#[test]
fn example_2() {
let n = 1;
let expected = ["()"];
it_works(n, expected.to_vec());
}
#[test]
fn submission_1() {
let n = 4;
let expected = [
"(((())))", "((()()))", "((())())", "((()))()", "(()(()))", "(()()())", "(()())()",
"(())(())", "(())()()", "()((()))", "()(()())", "()(())()", "()()(())", "()()()()",
];
it_works(n, expected.to_vec());
}
}