摘要: bool IsMatch(CString s, CString p) { int j = 0; for (int i = 0, last_p = 0, s_start = 0; i < s.GetLength();) { if (j < p.GetLength() && (s[i] == p[j] 阅读全文
posted @ 2021-07-13 12:45 StationaryTraveller 阅读(588) 评论(0) 推荐(0)