From ff9dbb89d2e4b0d084887a926f0258b9c320bd91 Mon Sep 17 00:00:00 2001 From: 24OI-bot <15963390+24OI-bot@users.noreply.github.com> Date: Tue, 16 Jul 2019 04:16:40 -0400 Subject: [PATCH] style: format markdown files with remark-lint --- docs/string/ac-automaton.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/string/ac-automaton.md b/docs/string/ac-automaton.md index ea39836d..ef5e14e1 100644 --- a/docs/string/ac-automaton.md +++ b/docs/string/ac-automaton.md @@ -6,8 +6,8 @@ AC 自动机是 **以 TRIE 的结构为基础** ,结合 **KMP 的思想** 建 简单来说,建立一个 AC 自动机有两个步骤: -1. 基础的 TRIE 结构:将所有的模式串构成一棵 $Trie$ 。 -2. KMP 的思想:对 $Trie$ 树上所有的结点构造失配指针。 +1. 基础的 TRIE 结构:将所有的模式串构成一棵 $Trie$ 。 +2. KMP 的思想:对 $Trie$ 树上所有的结点构造失配指针。 然后就可以利用它进行多模式匹配了。 -- 2.11.0