正则表达式匹配

实现一个正则表达式匹配,要求支持'.'和'*'。

'.'指单个字符,

'*'指零或多个前面的字符。

函数原型:

bool isMatch(const char *s, const char *p)

如:

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

bool isMatch(const char *s, const char *p)
{
    if (s == NULL || p == NULL)
    {
        return false;
    }

    if (*p == '\0') 
    {
        return *s == '\0';
    }

    if (*(p+1) != '*')
    {
        if ((*s == *p) || ((*p == '.') && (*s != '\0')))
        {
            return isMatch(s+1, p+1);
        }
        return false;
    }

    while ((*s == *p) || ((*p == '.') && (*s != '\0')))
    {
        if (isMatch(s, p+2))
        {
            return true;
        }
        s++;
    }

    return isMatch(s, p+2);
}



你可能感兴趣的:(正则表达式匹配)