Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/itcharge/AlgoNote
/ string_kmp.py
File
string_kmp.py
codes/python/04_string/string_kmp.py:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
# KMP 匹配算法,T 为文本串,p 为模式串
2
def
kmp(T: str, p: str) -> int:
3
n, m = len(T), len(p)
4
Callers
nothing calls this directly
Calls
1
kmp
Function · 0.85
Tested by
no test coverage detected