project/算法/算法和数据结构体系学习班/17图/图.md

27 lines
381 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

有向图
邻接表法、邻接矩阵法描述图
![](img\邻接表法.png)
![](img\邻接矩阵法.png)
Graph包含点Node和边Edge
### 宽度优先遍历
按照分支一个一个走栈弹出一个打印一次Set登记表记录哪些走过。
### 深度优先遍历
深度优先遍历,入栈打印
拓扑序,点数大的小。