摘要:
def prefix_table(pattern, prefix, n): # prefix = [0]*n i = 1 length = 0 # 代表公共前后缀的长度 while i < n: if pattern[i] == pattern[length]: length += 1 prefix 阅读全文
摘要:
实现 strStr() 函数。 给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串出现的第一个位置(下标从 0 开始)。如果不存在,则返回 -1 。 说明: 当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问 阅读全文