# Graph **Repository Path**: antcoding/graph ## Basic Information - **Project Name**: Graph - **Description**: 图(Graph)是由顶点的有穷非空集合和顶点之间的集合组成,通常表示为G[V, E],其中G表示一个图,V是图G的顶点集合,E是图G中边的集合。 - **Primary Language**: C - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-05-18 - **Last Updated**: 2021-09-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Graph #### 介绍 图(Graph)是由顶点的有穷非空集合和顶点之间的集合组成,通常表示为G[V, E],其中G表示一个图,V是图G的顶点集合,E是图G中边的集合。 ###### IndirectedNet -- 采用邻接矩阵表示法创建无向网 ###### TableIndirectnet -- 采用邻接表表示法创建无向图 ###### DFS -- 深度优先搜索遍历连通图的递归算法 ###### DFSTraverse -- 深度优先搜索遍历非连通图 ###### DFS2 -- 采用邻接矩阵表示图的深度优先搜索遍历 ###### TableTraverse -- 采用邻接表表示图的深度优先搜索遍历 ###### BFS -- 广度优先搜索遍历连通图