Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

括号生成 #437

Open
Pcjmy opened this issue Jan 29, 2023 · 1 comment
Open

括号生成 #437

Pcjmy opened this issue Jan 29, 2023 · 1 comment

Comments

@Pcjmy
Copy link
Contributor

Pcjmy commented Jan 29, 2023

No description provided.

@bey1995
Copy link

bey1995 commented Sep 17, 2024

var generateParenthesis = function (n) {
// 选括号,第一个必须是"(",最后一个必须是")"
const res = [];
const dfs = (leftRemain, rightRemain, str) => {
if (str.length === n * 2) {
res.push(str);
return;
}
// 左括号有剩余,选择它,继续递归
if (leftRemain > 0) {
dfs(leftRemain - 1, rightRemain, str + '(')
}
// 右括号比左括号多才能选择,因为要匹配()
if (leftRemain < rightRemain) {
dfs(leftRemain, rightRemain - 1, str + ')')
}
}
dfs(n, n, "")
return res;
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants