docs: update images path

更新图片路径
This commit is contained in:
yanglbme 2019-12-31 19:47:41 +08:00
parent 7a43a22e2e
commit 935da17315
6 changed files with 16 additions and 6 deletions

View File

@ -39,6 +39,7 @@ Markdown 文档自动即时渲染为微信图文,让你不再为微信文章
- [x] 支持一键恢复至默认内容及样式
- [x] 支持打开或关闭引用链接的选项
<!--
![select-and-change-color-theme](./assets/images/doocs-md-select-and-change-color-theme.gif)
![copy-and-paste](./assets/images/doocs-md-copy-and-paste.gif)
@ -46,6 +47,15 @@ Markdown 文档自动即时渲染为微信图文,让你不再为微信文章
![custom](./assets/images/doocs-md-custom-css.gif)
![doocs-md-upload-image](./assets/images/doocs-md-upload-image.gif)
-->
![select-and-change-color-theme](https://imgkr.cn-bj.ufileos.com/32c05c23-6309-491f-bd0d-f22a62c944b4.gif)
![copy-and-paste](https://imgkr.cn-bj.ufileos.com/31f16c2f-480c-4ea3-bb89-89b6e14d18e5.gif)
![custom](https://imgkr.cn-bj.ufileos.com/bbf0a0b6-b817-4626-bf79-4e18df318681.gif)
![doocs-md-upload-image](https://imgkr.cn-bj.ufileos.com/97db3cd6-bddc-4eff-8635-472631b0a642.gif)
## 示例文章
- [ES6 特性快速扫盲](https://mp.weixin.qq.com/s/I3EzOO0skf8xDCGtyYM5Lg)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1002 KiB

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 655 KiB

After

Width:  |  Height:  |  Size: 852 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 626 KiB

After

Width:  |  Height:  |  Size: 2.7 MiB

View File

@ -5,7 +5,7 @@ const DEFAULT_CONTENT =
## 使用自动补全
Google 搜索的自动补全功能可以在 Google 搜索应用的大多数位置使用包括 [Google](https://www.google.com/) 主页、适用于 IOS 和 Android 的 Google 应用,我们只需要在 Google 搜索框上开始键入关键字,就可以看到联想词了。
![](https://gitee.com/doocs/md/raw/master/assets/images/juej.gif)
![](https://imgkr.cn-bj.ufileos.com/17ed83bf-e028-4db2-9503-5a3b4e64deee.gif)
在上图示例中我们可以看到输入关键字 \`juej\`Google 搜索会联想到“掘金”、“掘金小册”、“绝句”等等,好处就是,我们无须输入完整的关键字即可轻松完成针对这些 topics 的搜索。
@ -20,7 +20,7 @@ Google 官方将自动补全功能称之为“预测”,而不是“建议”
另外这些预测也会随着我们键入的关键字的变更而更改例如当我们把键入的关键字从 \`juej\` 更改为 \`juex\` 时,与“掘金”相关的预测会“消失”,同时,与“觉醒”、“决心”相关联的词会出现。
![](https://gitee.com/doocs/md/raw/master/assets/images/juex.gif)
![](https://imgkr.cn-bj.ufileos.com/5b17dc99-606d-42c1-9f86-e09e88aaa822.gif)
## 为什么看不到某些联想词
如果我们在输入某个关键字时看不到联想词那么表明 Google 的算法可能检测到
@ -34,7 +34,7 @@ Google 拥有专门设计的系统,可以自动捕获不适当的预测结果
我们作为 Google 搜索的用户如果认定某条预测违反了相关的搜索自动补全政策可以进行举报反馈点击右下角**举报不当的联想查询**并勾选相关选项即可
![](https://gitee.com/doocs/md/raw/master/assets/images/feedback.gif)
![](https://imgkr.cn-bj.ufileos.com/6ca8185d-12c6-4550-bb4e-e49cfbf56db7.gif)
## 如何实现自动补全算法
目前Google 官方似乎并没有公开搜索自动补全的算法实现但是业界在这方面已经有了不少研究
@ -53,7 +53,7 @@ Google 拥有专门设计的系统,可以自动捕获不适当的预测结果
### 前缀树实现
通常来说许多词汇都以相同的前缀开头比如 \`need\`\`nested\` 都以 \`ne\` 开头,\`seed\`\`speed\` 都以 \`s\` 开头。要是为每个单词分别存储公共前缀似乎很浪费。
![](https://gitee.com/doocs/md/raw/master/assets/images/prefixtree.png)
![](https://imgkr.cn-bj.ufileos.com/7cc3cf37-040a-420e-8ef9-d05e92c82cfd.png)
前缀树是一种利用公共前缀来加速补全速度的数据结构前缀树在节点树中排列一组单词单词沿着从根节点到叶子节点的路径存储树的层次对应于前缀的字母位置
@ -65,7 +65,7 @@ Google 拥有专门设计的系统,可以自动捕获不适当的预测结果
有没有一种方法可以更加节省存储空间呢有的那就是 DFA
<center>
<img src="https://gitee.com/doocs/md/raw/master/assets/images/dfa.png" style="width: 50%;"></center>
<img src="https://imgkr.cn-bj.ufileos.com/02bc143e-e1a7-4b3c-bd5d-8d6d39139f0a.png" style="width: 50%;"></center>
在上面的例子中单词 \`need\`\`nested\`\`seed\`\`speed\` 仅由 9 个节点组成,而上一张图中的前缀树包含了 17 个节点。