摘要: Implement wildcard pattern matching with support for '?' and '*'. 全匹配问题,也就是正则式的问题,题目要求两个字符串是否匹配,?代表任意一个字母,*代表任意个字母,也可以是0个。 第一次写的时候出现了很多问题,我用了递归,但由于*代表 阅读全文