feature: Add csharp code graph_bfs and graph_dfs (#404)

* add csharp code graph_bfs and graph_dfs, modify graph adjacency list class inaccessable

* remove unnecessary using

* fix code style issue in comments
This commit is contained in:
hpstory
2023-03-08 19:16:46 +08:00
committed by GitHub
parent 590b532606
commit b6c9b01d96
3 changed files with 134 additions and 2 deletions
@@ -10,10 +10,10 @@ using NUnit.Framework;
namespace hello_algo.chapter_graph;
/* 基于邻接表实现的无向图类 */
class GraphAdjList
public class GraphAdjList
{
// 邻接表,key: 顶点,value:该顶点的所有邻接顶点
Dictionary<Vertex, List<Vertex>> adjList;
public Dictionary<Vertex, List<Vertex>> adjList;
/* 构造函数 */
public GraphAdjList(Vertex[][] edges)