https://oj.leetcode.com/problems/wildcard-matching/
模拟通配符的匹配
做法非常好
class Solution { public: bool isMatch(const char *s, const char *p) { bool hasStar = false; const char *str,*ptr; for(str = s,ptr = p; *str != '