摘要: def getCommonStr(str1, str2): """求两个字符串最大公共子串""" rst_str = '' curr_num, begin_num = 0, 0 i = len(str1) while i: ... 阅读全文
posted @ 2014-05-19 17:18 zizi_come 阅读(255) 评论(0) 推荐(0) 编辑