摘要: 1、字符串移位包含问题 //普通解法 bool contain_check() { char s[6] = "AABCD"; char d[5] = "CDAA"; int len = strlen(s); for(int i=0; i<len; ++i) { char temp = s[0]; f 阅读全文
posted @ 2020-02-24 18:06 Zhen_X 阅读(642) 评论(0) 推荐(0)