偷懒法
#include<regex>//c++11 正则匹配标准库 class Solution { public: bool isMatch(string s, string p) { return regex_match (s,regex(p)); } };
秒啊
秒啊