码迷,mamicode.com
首页 > 其他好文 > 详细

30.正则匹配

时间:2020-03-17 08:45:58      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:art   info   ||   bst   detail   mic   image   ref   class   

技术图片

 

 

思路:https://blog.csdn.net/qq_28410301/article/details/100182901

技术图片

class Solution {
public:
    bool isMatch(string str, string pattern) {
        //递归结束
        if(str.empty() && pattern.empty())
            return true;
        
        //查看首元素是否一致
         bool first_match = !str.empty() && (str[0] == pattern[0] || pattern[0] == .);
        
        //如果下一个字符带"*"
        if(pattern.size() >= 2 && pattern[1] == *)
            return (bool) (isMatch(str,pattern.substr(2)) || (first_match && isMatch(str.substr(1),pattern)));
        else{
            return bool(first_match && isMatch(str.substr(1),pattern.substr(1)));
        }        
        
    }
};

 

30.正则匹配

标签:art   info   ||   bst   detail   mic   image   ref   class   

原文地址:https://www.cnblogs.com/make-big-money/p/12508372.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!