OSDN Git Service

:sparkles: add automaton & sequence-am; change the content order in string
authorouuan <y___o___u@126.com>
Tue, 10 Sep 2019 08:13:56 +0000 (16:13 +0800)
committerouuan <y___o___u@126.com>
Tue, 10 Sep 2019 08:13:56 +0000 (16:13 +0800)
docs/string/automaton.md [new file with mode: 0644]
docs/string/sequence-am.md [new file with mode: 0644]
mkdocs.yml

diff --git a/docs/string/automaton.md b/docs/string/automaton.md
new file mode 100644 (file)
index 0000000..139597f
--- /dev/null
@@ -0,0 +1,2 @@
+
+
diff --git a/docs/string/sequence-am.md b/docs/string/sequence-am.md
new file mode 100644 (file)
index 0000000..139597f
--- /dev/null
@@ -0,0 +1,2 @@
+
+
index f680072..f77d35c 100644 (file)
@@ -151,15 +151,17 @@ nav:
     - 标准库: string/lib-func.md
     - 字符串匹配: string/match.md
     - 哈希: string/hash.md
+    - 字典树 (Trie): string/trie.md
     - 前缀函数与 KMP 算法: string/kmp.md
     - Z 函数(扩展 KMP): string/z-func.md
-    - 字典树 (Trie): string/trie.md
-    - 回文自动机: string/pam.md
-    - 后缀数组 (SA): string/sa.md
+    - 自动机: string/automaton.md
     - AC 自动机: string/ac-automaton.md
+    - 后缀数组 (SA): string/sa.md
     - 后缀自动机 (SAM): string/sam.md
     - 后缀树: string/suffix-tree.md
     - Manacher: string/manacher.md
+    - 回文自动机: string/pam.md
+    - 序列自动机: string/sequence-am.md
     - 最小表示法: string/minimal-string.md
     - Lyndon 分解: string/lyndon.md
   - 数学: