aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/leetcode/cpp/22.cpp
blob: e9467f1f29080a38fc2db0ad14b8e708b373f41b (plain)
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
#include <string>
#include <vector>

using std::string;
using std::vector;

class Solution
{
public:
    static void backtrack(vector<string> &result, string &current, int left, int right, int count, int string_length)
    {
        if (current.length() == string_length)
        {
            result.push_back(current);
            return;
        }

        if (left < count)
        {
            current.push_back('(');
            backtrack(result, current, left + 1, right, count, string_length);
            current.pop_back();
        }

        if (right < left)
        {
            current.push_back(')');
            backtrack(result, current, left, right + 1, count, string_length);
            current.pop_back();
        }
    }

    vector<string> generateParenthesis(int n)
    {
        vector<string> result;
        string current;
        backtrack(result, current, 0, 0, n, n * 2);
        return std::move(result);
    }
};