mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-24 04:06:28 +08:00
Fix a typo
This commit is contained in:
parent
6133aa63ba
commit
33acfc0af7
3 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ $$
|
|||
|
||||
- 「邻接 adjacency」:当两顶点之间存在边相连时,称这两顶点“邻接”。在上图中,顶点 1 的邻接顶点为顶点 2、3、5。
|
||||
- 「路径 path」:从顶点 A 到顶点 B 经过的边构成的序列被称为从 A 到 B 的“路径”。在上图中,边序列 1-5-2-4 是顶点 1 到顶点 4 的一条路径。
|
||||
- 「度 degree」:一个顶点拥有的边数。对于有向图,「入度 In-Degree」表示有多少条边指向该顶点,「出度 Out-Degree」表示有多少条边从该顶点指出。
|
||||
- 「度 degree」:一个顶点拥有的边数。对于有向图,「入度 in-degree」表示有多少条边指向该顶点,「出度 out-degree」表示有多少条边从该顶点指出。
|
||||
|
||||
## 图的表示
|
||||
|
||||
|
|
|
@ -286,6 +286,6 @@ nav:
|
|||
- 16.1 编程环境安装: chapter_appendix/installation.md
|
||||
- 16.2 一起参与创作: chapter_appendix/contribution.md
|
||||
# [status: new]
|
||||
- 16.3 术语表: chapter_appendix/terminologies.md
|
||||
- 16.3 术语表: chapter_appendix/terminology.md
|
||||
- 参考文献:
|
||||
- chapter_reference/index.md
|
||||
|
|
Loading…
Reference in a new issue