正则表达式递归写法
‘.’ Matches any single character. The matching should cover the entire input string (not partial). The function prototype should be: Some examples: 在Leetcode上看到了一种非常漂亮的递归解法,比我自己一堆判断的写法漂亮好多,转出来参考一下~ bool isMatch(string s,string p) {
if (p.empty()) return s.empty();
if ('*' == p[1])
// x* matches empty string or at least one character: x* -> xx*
// *s is to ensure s is non-empty
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));
}
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |