LWC 50:678. Valid Parenthesis String

LWC 50:678. Valid Parenthesis String

传送门:678. Valid Parenthesis String

Problem:

Given a string containing only three types of characters: ‘(‘, ‘)’ and ‘*’, write a function to check whether this string is valid. We define the validity of a string by these rules:

  • Any left parenthesis ‘(’ must have a corresponding right parenthesis ‘)’.
  • Any right parenthesis ‘)’ must have a corresponding left parenthesis ‘(‘.
  • Left parenthesis ‘(’ must go before the corresponding right parenthesis ‘)’.
  • ‘*’ could be treated as a single right parenthesis ‘)’ or a single left parenthesis ‘(’ or an empty string.
  • An empty string is also valid.

Example 1:

Input: “()”
Output: True

Example 2:

Input: “(*)”
Output: True

Example 3:

Input: “(*))”
Output: True

Note:

  • The string size will be in the range [1, 100].
    Discuss

思路:
采用暴力搜索,真正需要遍历的状态是”*”,每次遇到星,都有三种状态:1. 不做任何操作,2. 左括号+1, 3. 右括号+1,合法状态为左括号始终大于等于右括号,且最终输出left == right。

代码如下:

    public boolean checkValidString(String s) {
        return robot(s.toCharArray(), 0, 0, 0);
    }

    boolean robot(char[] cs, int i, int left, int right) {
        if (i >= cs.length) {
            return left == right;
        }
        for (int j = i; j < cs.length; ++j) {
            if (cs[j] == '(')
                left++;
            else if (cs[j] == ')') {
                right++;
                if (right > left) return false;
            } 
            else {
                return robot(cs, j + 1, left, right) || robot(cs, j + 1, left + 1, right)
                        || robot(cs, j + 1, left, right + 1);
            }
        }
        return left == right;
    }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值