标签:style blog http color java io strong for
题目:
Implement wildcard pattern matching with support for ‘?‘
and ‘*‘
.
‘?‘ Matches any single character. ‘*‘ Matches any sequence of characters (including the empty sequence). 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", "*") → true isMatch("aa", "a*") → true isMatch("ab", "?*") → true isMatch("aab", "c*a*b") → false
题解:
本文代码引用自:http://blog.csdn.net/perfect8886/article/details/22689147
Wildcard Matching leetcode java,布布扣,bubuko.com
Wildcard Matching leetcode java
标签:style blog http color java io strong for
原文地址:http://www.cnblogs.com/springfor/p/3893596.html