(再战leetcode)括号生成

22. 括号生成

题目描述

在这里插入图片描述

我的思路

先遍历所有情况(进行全遍历),然后判断是否是括号,就添加进去。

代码

public class Test {
    public static void main(String[] args) {
        Solution solution = new Solution();
        System.out.println(solution.generateParenthesis(3));
    }
}

class Solution {
    public List<String> generateParenthesis(int n) {
        List<String> res = new ArrayList<>();
        if (n <= 0) {
            return res;
        }
        dfs(n, "", res);
        return res;
    }

    private void dfs(int n, String path, List<String> res) {
        if (path.length() == 2 * n) {
            if (isLegalBracket(path)) {
                res.add(path);
            }
            return;
        }
        dfs(n, path + "(", res);
        dfs(n, path + ")", res);
    }

    public boolean isLegalBracket(String s) {
        Deque<Character> stack = new LinkedList<>();
        int n = s.length();
        HashMap<Character, Character> map = new HashMap<Character, Character>() {
            {
                put(')', '(');
                put('}', '{');
                put(']', '[');
            }
        };
        for (int i = 0; i < n; i++) {
            char ch = s.charAt(i);
            if (map.containsKey(ch)) {
                if (stack.isEmpty() || !Objects.equals(stack.peek(), map.get(ch))) {
                    return false;
                }
                stack.pop();
            } else {
                stack.push(ch);
            }
        }
        return stack.isEmpty();
    }
}

思路二

同样是先全遍历,然后再剪枝。
剪枝条件

  • open < 2 || close <2
  • close > open
    在这里插入图片描述
    代码:
public class Test {
    public static void main(String[] args) {
//        Solution solution = new Solution();
//        System.out.println(solution.generateParenthesis(3));
        Solution02 solution02 = new Solution02();
        System.out.println(solution02.generateParenthesis(3));
    }
}

class Solution02 {
    public List<String> generateParenthesis(int n) {
        List<String> res = new ArrayList<>();
        dfs(n, "", res, 0, 0);
        return res;
    }

    private void dfs(int n, String path, List<String> res, int open, int close) {
        if (open > n || close > open) {
            return;
        }
        if (path.length() == 2 * n) {
            res.add(path);
            return;
        }
        dfs(n, path + "(", res, open + 1, close);
        dfs(n, path + ")", res, open, close + 1);
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值