04 2021 档案

摘要:# BF算法 def BF(str1,str2): halen = len(str1) nelen = len(str2) j = 0 for i in range(halen): if j == nelen: break if str1[i] == str2[j]: j = j+1 else: i 阅读全文
posted @ 2021-04-23 16:39 墨子32 阅读(354) 评论(0) 推荐(0)