53:正则表达式匹配

/**
 * 面试题53:正则表达式匹配
 * 请实现一个函数用来匹配包括'.'和'*'的正则表达式。模式中的字符'.'表示任意一个字符,而'*'表示它前面的字符可以出现任意次(包含0次)。
 * 在本题中,匹配是指字符串的所有字符匹配整个模式。例如,字符串"aaa"与模式"a.a"和"ab*ac*a"匹配,但是与"aa.a"和"ab*a"均不匹配
 */
public class _53_regular_match {
    public static void main(String[] args) {
        Solution53 solution53 = new Solution53();
        System.out.println(solution53.match("".toCharArray(), ".*".toCharArray()));
    }
}

class Solution53 {
    public boolean match(char[] str, char[] pattern) {
        if (str == null || pattern == null) {
            return false;
        }
        return getMatch(str, pattern, 0, 0);
    }

    public boolean getMatch(char[] str, char[] pattern, int index1, int index2) {
        if ((index1 == str.length && index2 == pattern.length)) {
            return true;
        }
        if (index1 != str.length && index2 == pattern.length) {
            return false;
        }
        if (index2 + 1 < pattern.length && pattern[index2 + 1] == '*') {
            if ((str.length != index1 && str[index1] == pattern[index2])
                    || ((str.length != index1 && pattern[index2] == '.'))) {
                return  getMatch(str, pattern, index1, index2 + 2) 
                        || getMatch(str, pattern, index1 + 1, index2 + 2)
                        || getMatch(str, pattern, index1 + 1, index2);
            } else {
                return getMatch(str, pattern, index1, index2 + 2);
            }
        }
        if (index1 < str.length && (str[index1] == pattern[index2] || (pattern[index2] == '.'))) {
            return getMatch(str, pattern, index1 + 1, index2 + 1);
        }
        return false;
    }
}

转载于:https://www.cnblogs.com/andy-zhou/p/6553668.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值