int is_match(char* pattern,char* string)
该模式仅限于ASCII字符和量化*和?,因此它相对简单.如果匹配,则is_match应返回1,否则返回0.
我该如何做?