fix render problem in doc

This commit is contained in:
kevin
2020-08-19 18:09:03 +08:00
parent 418f8f6666
commit ed85775fd5

View File

@@ -4,7 +4,7 @@
利用高效的Trie树建立关键词树如下图所示然后依次查找字符串中的相连字符是否形成树的一条路径 利用高效的Trie树建立关键词树如下图所示然后依次查找字符串中的相连字符是否形成树的一条路径
![trie](images/trie.png =250x250) <img src="images/trie.png" alt="trie" style="zoom:33%;" />
发现掘金上[这篇文章](https://juejin.im/post/6844903750490914829)写的比较详细,可以一读,具体原理在此不详述。 发现掘金上[这篇文章](https://juejin.im/post/6844903750490914829)写的比较详细,可以一读,具体原理在此不详述。
@@ -53,9 +53,7 @@ true
## 4. Benchmark ## 4. Benchmark
```
| Sentences | Keywords | Regex | Go-Zero | | Sentences | Keywords | Regex | Go-Zero |
|-----------|----------|----------|----------| |-----------|----------|----------|----------|
| 10000 | 10000 | 16min10s | 27.2ms | 10000 | 10000 | 16min10s | 27.2ms |
```