Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kmp代码 #48

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
019fe40
Merge pull request #2 from NiX-Team/master
forestMr Oct 16, 2018
2ebbc79
Merge pull request #3 from NiX-Team/master
forestMr Nov 7, 2018
385a4bf
Merge pull request #4 from NiX-Team/master
forestMr Nov 27, 2018
9ea5941
上传kmp算法
forestMr Nov 27, 2018
6915ad6
Merge branch 'master' into master
GasenLi Nov 27, 2018
09b8a64
Update README.md
GasenLi Nov 27, 2018
f2efa37
javaee规范
forestMr Dec 2, 2018
df69c4b
springIOC
forestMr Dec 2, 2018
47336a7
2018/12/2
forestMr Dec 2, 2018
35d16ab
Merge branch 'master' of https://github.com/forestMr/NiX-Joy
forestMr Dec 2, 2018
176de69
javaee规范 2018/12/2
forestMr Dec 2, 2018
8423592
javaee 规范
forestMr Dec 2, 2018
ff971e2
javaee规范 2018/12/2
forestMr Dec 2, 2018
748f86b
更新 java2ee/JAVAEE_NORM.md /spring/SPRING_IOC.md
forestMr Dec 9, 2018
5ed1078
Merge branch 'master' of https://github.com/forestMr/NiX-Joy
forestMr Dec 9, 2018
1cdac64
Merge branch 'master' into master
forestMr Dec 9, 2018
3b25938
Merge pull request #5 from NiX-Team/master
forestMr Jan 5, 2019
f42ed8d
synchronied升级
forestMr Jan 5, 2019
60f70fe
synchronied升级
forestMr Jan 5, 2019
dd80729
233
forestMr Jan 5, 2019
a4e5e9b
2233
forestMr Jan 5, 2019
635df53
解决README.md文档冲突
forestMr Feb 25, 2019
63bbb4f
2019/03/03 布隆过滤器 (#40)
unclezs Mar 3, 2019
82f6a0d
数据库引用
forestMr Mar 17, 2019
f63de80
2019/3/17 update
forestMr Mar 17, 2019
3f23ef9
2019/03/17 数据库索引
forestMr Mar 17, 2019
a416ff3
2019/6/17
forestMr Jun 17, 2019
3b977b6
kmp代码
forestMr Jul 21, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ NiX-Joy 的技术分享资料
<details>
<summary>2019</summary>
<blockquote>
<details>
<summary>01</summary>
<blockquote>
<a href="java/synchronized的升级/synchronized.md">synchronied的升级</a>
</blockquote>
</details>
<details>
<summary>02</summary>
<blockquote>
<a href="Search\Elasticsearch\elasticsearch · 入门.md">elasticsearch入门</a>
</blockquote>
</details>
<details>
<summary>03</summary>
<blockquote>
<a href="java/布隆过滤器/布隆过滤器.md">布隆过滤器</a>
</blockquote>
<blockquote>
<a href="database/数据库索引/index.md">数据库索引</a>
</blockquote>
</details>
<details>
<summary>01</summary>
<blockquote>
Expand Down
4 changes: 3 additions & 1 deletion algorithm/KMP/KMP.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ ps:next数组的起始下标是从1开始

* 当next[k] = n代表前缀与后缀的字符串匹配而且长为n。

* 当next[k] = 1代表接下下来的匹配需要子串的首字符与父串的当前匹配位置匹配。
* 当next[k] = 1代表接下下来的匹配需要子串的首字符与父串的当前匹配位置匹配。

[kmp代码实现](https://github.com/forestMr/forest-algorithm/tree/master/src/com/company/algorithm/kmp)