标签: string data-structures pattern-matching
使用第一种模式匹配技术在长度为T的文本中搜索长度为L的字符串所需的最大比较数是多少?
答案 0 :(得分:0)
Knuth–Morris–Pratt algorithm为您提供O(L+T)的时间复杂度。
O(L+T)