Replace ":" with "。"

This commit is contained in:
krahets
2023-08-27 22:49:47 +08:00
parent 71692af8c4
commit c5a7323817
47 changed files with 159 additions and 165 deletions
+1 -1
View File
@@ -247,7 +247,7 @@ BFS 通常借助队列来实现。队列具有“先入先出”的性质,这
[class]{}-[func]{graph_dfs}
```
深度优先遍历的算法流程如下图所示,其中:
深度优先遍历的算法流程如下图所示
- **直虚线代表向下递推**,表示开启了一个新的递归方法来访问新顶点。
- **曲虚线代表向上回溯**,表示此递归方法已经返回,回溯到了开启此递归方法的位置。