微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Regular Expression Matching 正则表达式匹配和递归

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
class Solution {
public:

//* 匹配0或多个 前面的字符
// "a","ab*"
    bool isMatch(string s,string p) {
     
        int pLen=p.length();
        int sLen=s.length();
        
        if(pLen==0)
            return sLen==0;
            
        if(pLen==1)
            if( (s[0]==p[0] || p[0]=='.') && sLen==1)
                return true;
            else
                return false;
                
        if(p[1]!='*'){
            if(s.length()>0 && (s[0]==p[0] || p[0]=='.'))
                return isMatch(s.substr(1),p.substr(1));
            else
                return false;
        }else{
            while(s.length()>0 && (p[0]==s[0] || p[0]=='.'))
            {
                if(isMatch(s,p.substr(2)))//*表示0个字符
                    return true;
                s=s.substr(1);
            }
            return isMatch(s,p.substr(2));
        }
    }
};

原文地址:https://www.jb51.cc/regex/360257.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐