剑指offer——面试题19:正则表达式匹配
Posted acm-jing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer——面试题19:正则表达式匹配相关的知识,希望对你有一定的参考价值。
1 #include"iostream" 2 using namespace std; 3 4 bool MatchCore(char*str,char* pattern); 5 6 bool Match(char* str,char* pattern) 7 { 8 if(str==nullptr||pattern==nullptr) 9 return false; 10 return MatchCore(str,pattern); 11 } 12 13 bool MatchCore(char*str,char* pattern) 14 { 15 if(*str==‘