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

括号生成 #1060

Open
pwstrick opened this issue Jul 31, 2020 · 0 comments
Open

括号生成 #1060

pwstrick opened this issue Jul 31, 2020 · 0 comments
Labels
Leetcode Leetcode的题目

Comments

@pwstrick
Copy link
Owner

22. 括号生成

/**
 * @param {number} n
 * @return {string[]}
 */
let results;
var generateParenthesis = function(n) {
    results = [];
    let route = [];
    n *= 2;
    backtrack(route, 0, n);
    return results;
};

function backtrack(route, pos, n) {
    if(pos == n) {
        valid(route) && results.push(route.join(""));
        return;
    }
    route[pos] = "(";               //选择
    backtrack(route, pos+1, n);
    route[pos] = ")";               //撤销
    backtrack(route, pos+1, n);
}
//验证当前括号配对是否合法
function valid(route) {
    let balance = 0;
    for(let p of route) {
        if(p == "(")
            balance++;
        else if(p == ")")
            balance--;
        if(balance < 0)
            return false;
    }
    return balance == 0;
}
@pwstrick pwstrick added the Leetcode Leetcode的题目 label Jul 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Leetcode Leetcode的题目
Projects
None yet
Development

No branches or pull requests

1 participant