LeetCode OJ 之 Regular Expression Matching (正则表达式匹配)

题目:

Implement regular expression matching with support for '.' and '*'.

'.' Matches any single character.
'*' Matches zero or more of the preceding element.

The matching should cover the entire input string (not partial).

The function prototype should be:
bool isMatch(const char *s, const char *p)

Some examples:
isMatch("aa","a") → false
isMatch("aa","aa") → true
isMatch("aaa","aa") → false
isMatch("aa", "a*") → true
isMatch("aa", ".*") → true
isMatch("ab", ".*") → true
isMatch("aab", "c*a*b") → true

正则表达式匹配,. 可以匹配任何单个字符。 *  零次或多次匹配前面的字符或子表达式。例如,zo* 可以匹配“z”和“zoo”。前面一个*表示o一次也没有。

思路:

当前字符的下一个字符为 * 时,有两种情况,1、* 表示0次前一个字符,则对(s,p+2)递归调用匹配。如 s = abc   , p = m*abc 。

2、如果当前字符匹配,则对(s+1,p)递归调用匹配。此时 * 至少表示一次前一个字符。如 s = aaabc , p = a*abc 。

两种情况只要有一个满足即匹配。

代码:

class Solution {
public:
    bool isMatch(const char *s, const char *p)
    {
        if (*p == '\0') 
            return *s == '\0';
        // next char is not '*', then must match current character
        if (*(p + 1) != '*') 
        {
            if (*p == *s || (*p == '.' && *s != '\0'))
                return isMatch(s + 1, p + 1);
            else
                return false;
        } 
        else 
        { // next char is '*'
            return isMatch(s, p + 2) || (*p == *s || (*p == '.' && *s != '\0')) && isMatch(s + 1, p);
        }
    }
};

更新:

class Solution {
public:
    bool isMatch(string s, string p) {
        const char *s1 = s.c_str();
        const char *s2 = p.c_str();
        return isMatch(s1 , s2);
    }
    bool isMatch(const char *s1 , const char *p1)
    {
        if(*p1 == '\0')
            return *s1 == '\0';
        if(*(p1+1) != '*')
        {
            if(*s1 == *p1 || (*p1 == '.' && *s1 != '\0'))
                return isMatch(s1+1 , p1+1);
            else
                return false;
        }
        else
        {
            return isMatch(s1 , p1+2) || (*s1 == *p1 || (*p1 == '.' && *s1 != '\0')) && isMatch(s1+1 , p1);
        }
    }
};


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值