# Graph.Algorithm.Tutorial **Repository Path**: hexu1985/Graph.Algorithm.Tutorial ## Basic Information - **Project Name**: Graph.Algorithm.Tutorial - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-26 - **Last Updated**: 2021-03-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Graph Algorithm Tutorial ## Table of contents ### [Chapter1: 图的类型和表示](chapter-01/README.md) - [图的表示](chapter-01/recipe-01/README.md) - [图的邻接矩阵表示](chapter-01/recipe-02/README.md) - [图的邻接链表表示](chapter-01/recipe-03/README.md) - [权重图的邻接矩阵表示](chapter-01/recipe-04/README.md) - [权重图的邻接链表表示](chapter-01/recipe-05/README.md) ### [Chapter2: 图的搜索及其应用](chapter-02/README.md) - [图的宽度优先搜索算法](chapter-02/recipe-01/README.md) - [无向图的连通分量算法](chapter-02/recipe-02/README.md) - [图的深度优先搜索算法(迭代式版本)](chapter-02/recipe-03/README.md) - [图的深度优先搜索算法(递归版本)](chapter-02/recipe-04/README.md) - [有向图的拓扑排序](chapter-02/recipe-05/README.md) ### API文档: API文档是通过doxygen生成的,需要事先安装doxygen,然后通过如下命令生成html格式的API文档: ```shell $ cd doc $ ./build_doc.sh ```