[LeetCode] 22. Generate Parentheses
Contents
Generate Parentheses
Link to original Problem on LeetCode
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:
[ “((()))”, “(()())”, “(())()”, “()(())”, “()()()” ]
Company: Microsoft, Facebook
Solution (Backtracking and Recursion):
Time Complexity: Space Complexity:
|
Explanation:
Following is how the recursion is working:
generateParenthesisHelper(2, 2, [], "")
generateParenthesisHelper(1, 2, [], "(")
generateParenthesisHelper(0, 2, [], "((")
generateParenthesisHelper(0, 1, [], "(()")
generateParenthesisHelper(0, 0, [], "(())") # We got "(())" and we append it to ans
generateParenthesisHelper(1, 1, ["(())"], "()")
generateParenthesisHelper(0, 1, ["(())"], "()(")
generateParenthesisHelper(0, 0, ["(())"], "()()") # We got "(())" and we append it to ans
generateParenthesisHelper(1, 0, ["(())", "()()"], "())") # will just return as right < left
generateParenthesisHelper(2, 1, ["(())", "()()"], ")") # will just return as right < left