首页 > 其他 > 详细

Regular Expression Matching - LeetCode

时间:2019-01-24 20:04:25      阅读:176      评论:0      收藏:0      [点我收藏+]

目录

题目链接

Regular Expression Matching - LeetCode

注意点

  • “.*”可以匹配任何字符串(包括空的)

解法

解法一:参考Regular Expression Matching 正则表达式匹配。时间复杂度为O(n)

class Solution {
public:
    bool firstCharIsMatch(char s,char p)
    {
        if(s == p || p == '.')
        {
            return true;
        }
        return false;
    }
    bool isMatch(string s, string p) {
        if(p.empty() == true)
        {
            return s.empty();
        }
        if(p.length()==1)
        {
            return (s.length()==1 && firstCharIsMatch(s[0],p[0]));
        }
        if(p[1] != '*')
        {
            if(s.empty() == true)
            {
                return false;
            }
            return firstCharIsMatch(s[0],p[0])&&isMatch(s.substr(1),p.substr(1));
        }
        while(!s.empty()&&firstCharIsMatch(s[0],p[0]))
        {
            if(isMatch(s,p.substr(2)) == true)
            {
                return true;
            }
            s = s.substr(1);
        }
        return isMatch(s,p.substr(2));
    }
};

技术分享图片

小结

  • 第一反应是用C++11的regex库...用了之后发现效率还不如自己实现来得高

Regular Expression Matching - LeetCode

原文:https://www.cnblogs.com/multhree/p/10316396.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!