题目:
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
翻译:正则匹配。两个字符串匹配。.可以代替任意一个字符。*可以表示前一个字符出现的次数为0次或者多次。注意,这个*不是代表任意0个到多个字符。而是值得前面的字符出现次数。表示刚开始做的时候想成了编译的NFA。
@H_502_27@ 一开始看这个题目确实有些蒙住了。上午上课期间想了想,没有找到好的办法解决。于是乎搜了一下大神的代码,学习了一下思想。并自己尝试写了出来。