Regular Expression Matching
摘要:
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 阅读全文
posted @ 2013-10-23 08:08 Step-BY-Step 阅读(164) 评论(0) 推荐(0) 编辑