https://leetcode.com/problems/wildcard-matching/description/ bool isMatch(char* s, char* p) { char* ss = s; char* pp = NULL; //这里写成 char* ss = s, pp = NULL, 就会报错说运行时错误,求问单行和分开申明有什么区别 while( *s ){ if(*p == '?' || *p == *s ){ s++; p++; co...