4.3 Brute Force 算法 #177
Replies: 1 comment
-
我还以为是啥很厉害的算法,原来是暴力匹配0.0 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
4.3 Brute Force 算法
Brute Force 算法 1. Brute Force 算法介绍 Brute Force 算法:简称为 BF 算法。中文意思是暴力匹配算法,也可以叫做朴素匹配算法。 BF 算法思想:对于给定文本串 T 与模式串 p,从文本串的第一个字符开始与模式串 p 的第一个字符进行比较,如果相等,则继续逐个比较后续字符,否则从文本串 T 的第二个字符起重新和模...
https://algo.itcharge.cn/04_string/04_03_string_brute_force/
Beta Was this translation helpful? Give feedback.
All reactions