题目:正则表达式匹配
要求:请实现一个函数用来匹配包括'.'和'*'的正则表达式。模式中的字符'.'表示任意一个字符,而'*'表示它前面的字符可以出现任意次(包含0次)。 在本题中,匹配是指字符串的所有字符匹配整个模式。例如,字符串"aaa"与模式"a.a"和"ab*ac*a"匹配,但是与"aa.a"和"ab*a"均不匹配
class Solution { public: bool match(char* str, char* pattern) { } };
解题代码:
1 class Solution { 2 public: 3 bool match(char* str, char* pattern) { 4 if(str == nullptr || pattern == nullptr) 5 return false; 6 7 return matchCore(str, pattern); 8 } 9 private: 10 bool matchCore(char* str, char* pattern){ 11 // char ch_str= *str; 12 // char ch_pattern = *pattern; 13 // cout<<ch_str<<' '<<ch_pattern<<endl; 14 if(*str == '