美文网首页
正则式匹配

正则式匹配

作者: cde99bf0b5b1 | 来源:发表于2017-10-10 15:59 被阅读0次

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

递归解法
#include <string>
using std::string;

class Solution {
public:
    bool isMatch(string s, string p) {
        if(p.empty()) return s.empty();
        
        if(p.size()<2)
            return !s.empty() && s.size() < 2 && (p[0] == s[0] || p[0] == '.');
        
        if(p[1] == '*')
            return isMatch(s, p.substr(2)) || !s.empty() && ((s[0] == p[0] || p[0] == '.') && isMatch(s.substr(1), p));
        else
            return !s.empty() && (s[0] == p[0] || p[0] == '.') && isMatch(s.substr(1), p.substr(1));
    }
};

相关文章

  • NSRegularExpression使用

    使用正则式匹配NSRegularExpression 其他

  • 正则式匹配

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

  • 正则匹配库

    正则匹配用户名: 正则匹配用户名: 正则匹配手机号或者固定电话: 匹配中文: 正则匹配用户密码: 正则匹配电子邮箱...

  • javascript中的正则表达式

    工作原理:通配符匹配技术 创建正则表达式 1. 显式创建 var pattern=new RegExp("正则表达...

  • Nginx location的正则匹配

    Nginx location的正则匹配 Nginx正则匹配的匹配规则

  • 正则表达式

    在线正则表达试测试链接 正则表达式测试链接网址 正则匹配 结果为 匹配目标分组匹配 结果为 贪婪模式匹配 .*匹配...

  • 正则判断中文汉字

    正则匹配(全是中文汉字) 正则匹配(含有中文汉字)

  • Linux学习--No.13正则表达式

    上一节提到根据文本模式进行sed编辑匹配行文本时,往往搭配正则匹配式进行高效检索、编辑。这一次来专门学习下正则表达...

  • 《javaScript正则表达式迷你书》(一)

    正则表达式字符匹配攻略 正则表达式是匹配模式,要么匹配字符,要么匹配位置。 两种模糊匹配 如果正则只有精确匹配是没...

  • java正则使用

    正则切割 正则捕获 正则完全匹配

网友评论

      本文标题:正则式匹配

      本文链接:https://www.haomeiwen.com/subject/pczvyxtx.html