This commit is contained in:
krahets
2024-01-12 21:13:51 +08:00
parent 97f3be5bc8
commit 10c61fd528
18 changed files with 45 additions and 75 deletions

View File

@ -20,7 +20,7 @@ $$
<p align="center"> 图 9-1 &nbsp; 链表、树、图之间的关系 </p>
## 9.1.1 &nbsp; 图常见类型与术语
## 9.1.1 &nbsp; 图常见类型与术语
根据边是否具有方向,可分为「无向图 undirected graph」和「有向图 directed graph」如图 9-2 所示。

View File

@ -2,7 +2,7 @@
comments: true
---
# 9.2 &nbsp; 图基础操作
# 9.2 &nbsp; 图基础操作
图的基础操作可分为对“边”的操作和对“顶点”的操作。在“邻接矩阵”和“邻接表”两种表示方法下,实现方式有所不同。